We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 496a8aa commit 3d269c0Copy full SHA for 3d269c0
1 file changed
Prequel.Tests/SqlCmdPreprocessorInputTests.cs
@@ -11,14 +11,16 @@ public class SqlCmdPreprocessorInputTests
11
[Test]
12
public void Construct_NullName()
13
{
14
- Invoking(() => new Input(null!, "any"))
15
- .Should().Throw<ArgumentNullException>();
+ Should.Throw<ArgumentNullException>(
+ () => new Input(null!, "any")
16
+ );
17
}
18
19
20
public void Construct_NullText()
21
- Invoking(() => new Input("any", null!))
22
23
+ () => new Input("any", null!)
24
25
26
0 commit comments