Updated the DynamicDocument and node unit tests to not init a db each time, runs much faster though in the future

we might have to re-enable this in a smart way.
This commit is contained in:
Shannon Deminick
2012-09-11 04:43:30 +07:00
parent fe92947d72
commit 37969909ca
4 changed files with 19 additions and 4 deletions

View File

@@ -5,6 +5,14 @@ using System.Text;
namespace umbraco.interfaces
{
/// <summary>
/// Any class that implements this interface will be instantiated at application startup
/// </summary>
/// <remarks>
/// NOTE: It is not recommended to use this interface and instead use IApplicationEventHandler
/// and bind to any custom events in the OnApplicationInitialized method.
/// </remarks>
public interface IApplicationStartupHandler
{ }
}