tweaked logging tests.

This commit is contained in:
kay.one 2013-03-26 21:03:02 -07:00
parent 22bbf83e42
commit ccba527e89
4 changed files with 26 additions and 4 deletions

View file

@ -68,6 +68,16 @@ namespace NzbDrone.Core.Test.Framework
private ITestDatabase _db;
private IDatabase _database;
protected virtual MigrationType MigrationType
{
get
{
return MigrationType.Main;
}
}
protected ITestDatabase Db
{
get
@ -87,7 +97,7 @@ namespace NzbDrone.Core.Test.Framework
MapRepository.Instance.EnableTraceLogging = true;
var factory = new DbFactory(new MigrationController(new NlogAnnouncer()));
_database = factory.Create(_dbName);
_database = factory.Create(_dbName, MigrationType);
_db = new TestTestDatabase(_database);
Mocker.SetConstant(_database);
}