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 45ad497 commit 89fec7cCopy full SHA for 89fec7c
tests/DiffBuilderTest.cs
@@ -7,7 +7,7 @@ namespace Egil.AngleSharp.Diffing
7
public class DiffBuilderTest
8
{
9
[Fact(DisplayName = "Control and test html are set correctly")]
10
- public void Test1()
+ public void Test001()
11
12
var control = "<p>control</p>";
13
var test = "<p>test</p>";
@@ -21,7 +21,7 @@ public void Test1()
21
}
22
23
[Fact(DisplayName = "Builder throws if null is passed to control and test")]
24
- public void Test2()
+ public void Test002()
25
26
Should.Throw<ArgumentNullException>(() => DiffBuilder.Compare(null!)).ParamName.ShouldBe(nameof(DiffBuilder.Control));
27
Should.Throw<ArgumentNullException>(() => DiffBuilder.Compare("").WithTest(null!)).ParamName.ShouldBe(nameof(DiffBuilder.Test));
0 commit comments