We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e933e commit 05b529fCopy full SHA for 05b529f
Test/UnitTests/TestDataLayer/TestEnsureClean.cs
@@ -38,7 +38,8 @@ public void TestEnsureDeletedThenCreateDatabase1Ok()
38
39
//ATTEMPT
40
logToOptions.ShowLog = true;
41
- context.Database.EnsureClean();
+ using (new TimeThings(_output, "Time to create a database"))
42
+ context.Database.EnsureClean();
43
logToOptions.ShowLog = false;
44
45
//VERIFY
@@ -85,7 +86,8 @@ public void TestWipeDataDatabase1Ok()
85
86
context.Dependents.Count().ShouldEqual(1);
87
88
89
+ using (new TimeThings(_output, "Time to clean a SQL database"))
90
91
92
93
context.TopClasses.Count().ShouldEqual(0);
0 commit comments