Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jul 19, 2024
1 parent 531674a commit e7e4afc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/explicit-targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public Task WithTargets() =>
name: "targetName")
]);
```
<sup><a href='/src/Verify.NUnit.Tests/Tests.cs#L41-L57' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitTargetsNunit' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.NUnit.Tests/Tests.cs#L38-L54' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitTargetsNunit' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


Expand Down
7 changes: 2 additions & 5 deletions src/Verify.NUnit.Tests/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ static void DerivePathInfo() =>
methodName: method.Name));
#endregion


[TestCase("Value1")]
public Task UseFileNameWithParam(string arg) =>
Verify(arg)
Expand All @@ -26,13 +25,11 @@ public Task UseTextForParameters(string arg) =>

[TestCase("Value1", TestName = "CustomName")]
public Task TestCaseWithName(string arg) =>
Verify(arg)
.UseTextForParameters("TextForParameter");
Verify(arg);

[TestCase("Value1", TestName = "Custom>Name")]
public Task TestCaseWithNameAndInvalidChars(string arg) =>
Verify(arg)
.UseTextForParameters("TextForParameter");
Verify(arg);

[Test]
public Task StringTarget() =>
Expand Down

0 comments on commit e7e4afc

Please sign in to comment.