Skip to content

Commit

Permalink
Fix MSTEST0025 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cagrin committed Sep 19, 2024
1 parent 76da966 commit 0a83a8e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SqlTest.Tests/UnitTests/RunAllOptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ public void ShouldHaveEmptyProperties()
{
var test = new RunAllOptions();

Assert.IsNull(test.Image);
Assert.IsNull(test.Project);
Assert.IsNull(test.Collation);
Assert.IsNull(test.Result);
Assert.IsNull(test.CcCobertura);
Assert.IsTrue(string.IsNullOrEmpty(test.Image));
Assert.IsTrue(string.IsNullOrEmpty(test.Project));
Assert.IsTrue(string.IsNullOrEmpty(test.Collation));
Assert.IsTrue(string.IsNullOrEmpty(test.Result));
Assert.IsTrue(string.IsNullOrEmpty(test.CcCobertura));
Assert.IsFalse(test.CcDisable);
Assert.IsFalse(test.CcIncludeTsqlt);
}
Expand Down

0 comments on commit 0a83a8e

Please sign in to comment.