Files
Umbraco-CMS/src/Umbraco.Tests/Testing/UmbracoTestOptions.cs

38 lines
980 B
C#
Raw Normal View History

2016-12-16 10:40:14 +01:00
namespace Umbraco.Tests.Testing
2016-11-05 19:23:55 +01:00
{
public static class UmbracoTestOptions
{
public enum Logger
{
// pure mocks
Mock,
// log4net for tests
Log4Net
}
public enum Database
{
// no database
None,
// new empty database file for the entire feature
NewEmptyPerFixture,
// new empty database file per test
NewEmptyPerTest,
// new database file with schema for the entire feature
NewSchemaPerFixture,
// new database file with schema per test
NewSchemaPerTest
}
2017-05-30 15:33:13 +02:00
public enum PluginManager
{
// the default, global plugin manager for tests
Default,
// create one plugin manager for the feature
PerFixture,
// create one plugin manager for each test
PerTest
}
2016-11-05 19:23:55 +01:00
}
2017-07-20 11:21:28 +02:00
}