mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
random template is create only in ncrunch.
This commit is contained in:
parent
32e402b5a0
commit
460b90bc95
1 changed files with 8 additions and 1 deletions
|
@ -16,7 +16,14 @@ public class CoreTest : TestBase
|
|||
[SetUp]
|
||||
public void CoreTestSetup()
|
||||
{
|
||||
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
|
||||
if(NCrunch.Framework.NCrunchEnvironment.NCrunchIsResident())
|
||||
{
|
||||
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
|
||||
}
|
||||
else
|
||||
{
|
||||
_dbTemplateName = "db_template.sdf";
|
||||
}
|
||||
CreateDataBaseTemplate();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue