Skip to content

Commit

Permalink
fixing tests to match the perf changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankit Mishra committed Aug 25, 2017
1 parent b2610a1 commit 6f725f7
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,12 @@ public void MergeProjectWideWarningProperties_MergesEmptyCollections()
}

[Theory]
[InlineData("NU1603, NU1605", "NU1701", true, "", "", false, "NU1603, NU1605", "NU1701", true)]
[InlineData( "", "", false, "NU1603, NU1605", "NU1701", true, "NU1603, NU1605", "NU1701", true)]
[InlineData("NU1603, NU1605", "NU1701", true, "", "", false, "NU1603, NU1605", "", true)]
[InlineData( "", "", false, "NU1603, NU1605", "NU1701", true, "NU1603, NU1605", "", true)]
[InlineData("NU1603, NU1701", "", false, "NU1603, NU1701", "", false, "NU1603, NU1701", "", false)]
[InlineData("", "NU1603, NU1701", false, "", "NU1603, NU1701", false, "", "NU1603, NU1701", false)]
[InlineData("NU1601", "NU1602, NU1603", false, "NU1604", "NU1605, NU1701", false, "NU1601, NU1604", "NU1602, NU1603, NU1605, NU1701", false)]
[InlineData("NU1601", "NU1602, NU1603", true, "NU1604", "NU1605, NU1701", false, "NU1601, NU1604", "NU1602, NU1603, NU1605, NU1701", true)]
[InlineData("", "NU1603, NU1701", false, "", "NU1603, NU1701", false, "", "", false)]
[InlineData("NU1601", "NU1602, NU1603", false, "NU1604", "NU1605, NU1701", false, "NU1601, NU1604", "", false)]
[InlineData("NU1601", "NU1602, NU1603", true, "NU1604", "NU1605, NU1701", false, "NU1601, NU1604", "", true)]
[InlineData("", "", false, "", "", false, "", "", false)]
[InlineData("", "", true, "", "", false, "", "", true)]
[InlineData("", "", false, "", "", true, "", "", true)]
Expand Down Expand Up @@ -421,7 +421,7 @@ public void MergeProjectWideWarningProperties_MergesNonEmptyCollections(
// Assert
merged.Should().NotBeNull();
merged.AllWarningsAsErrors.ShouldBeEquivalentTo(expected.AllWarningsAsErrors);
merged.WarningsAsErrors.ShouldBeEquivalentTo(expected.WarningsAsErrors);
merged.WarningsAsErrors.Should().BeEmpty();
merged.NoWarn.ShouldBeEquivalentTo(expected.NoWarn);
merged.ShouldBeEquivalentTo(expected);
}
Expand Down

0 comments on commit 6f725f7

Please sign in to comment.