Skip to content

Commit 6f2641b

Browse files
committed
2 parents 3029479 + 8a87e7f commit 6f2641b

File tree

296 files changed

+2572
-221
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+2572
-221
lines changed

docs/anonymous-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public Task Anon()
6868
});
6969
}
7070
```
71-
<sup><a href='/src/Verify.Xunit.Tests/VerifyObjectSamples.cs#L23-L47' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonXunit' title='Start of snippet'>anchor</a></sup>
71+
<sup><a href='/src/Verify.XunitV3.Tests/VerifyObjectSamples.cs#L23-L47' title='Snippet source file'>snippet source</a> | <a href='#snippet-AnonXunit' title='Start of snippet'>anchor</a></sup>
7272
<!-- endSnippet -->
7373

7474

docs/compared-to-assertion.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void TraditionalTest()
8181
Assert.Equal("USA", person.Address.Country);
8282
}
8383
```
84-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/CompareToAssert.cs#L3-L21' title='Snippet source file'>snippet source</a> | <a href='#snippet-TraditionalTest' title='Start of snippet'>anchor</a></sup>
84+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/CompareToAssert.cs#L3-L21' title='Snippet source file'>snippet source</a> | <a href='#snippet-TraditionalTest' title='Start of snippet'>anchor</a></sup>
8585
<!-- endSnippet -->
8686

8787

@@ -97,7 +97,7 @@ public Task SnapshotTest()
9797
return Verify(person);
9898
}
9999
```
100-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/CompareToAssert.cs#L23-L32' title='Snippet source file'>snippet source</a> | <a href='#snippet-SnapshotTest' title='Start of snippet'>anchor</a></sup>
100+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/CompareToAssert.cs#L23-L32' title='Snippet source file'>snippet source</a> | <a href='#snippet-SnapshotTest' title='Start of snippet'>anchor</a></sup>
101101
<!-- endSnippet -->
102102

103103
Produces a snapshot file `SnapshotTest.verified.txt`:
@@ -121,4 +121,22 @@ Produces a snapshot file `SnapshotTest.verified.txt`:
121121
}
122122
```
123123
<sup><a href='/src/Verify.Xunit.Tests/Snippets/CompareToAssert.SnapshotTest.verified.txt#L1-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-CompareToAssert.SnapshotTest.verified.txt' title='Start of snippet'>anchor</a></sup>
124+
<a id='snippet-CompareToAssert.SnapshotTest.verified.txt-1'></a>
125+
```txt
126+
{
127+
GivenNames: John,
128+
FamilyName: Smith,
129+
Spouse: Jill,
130+
Address: {
131+
Street: 4 Puddle Lane,
132+
Country: USA
133+
},
134+
Children: [
135+
Sam,
136+
Mary
137+
],
138+
Id: Guid_1
139+
}
140+
```
141+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/CompareToAssert.SnapshotTest.verified.txt#L1-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-CompareToAssert.SnapshotTest.verified.txt-1' title='Start of snippet'>anchor</a></sup>
124142
<!-- endSnippet -->

docs/explicit-targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public Task WithTargets() =>
5454
name: "targetName")
5555
]);
5656
```
57-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L39-L55' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitTargetsXunit' title='Start of snippet'>anchor</a></sup>
57+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L39-L55' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitTargetsXunit' title='Start of snippet'>anchor</a></sup>
5858
<!-- endSnippet -->
5959

6060

docs/naming.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ public class UniqueForSample
307307
.UniqueForOSPlatform();
308308
}
309309
```
310-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/UniqueForSample.cs#L1-L66' title='Snippet source file'>snippet source</a> | <a href='#snippet-UniqueForSampleXunit' title='Start of snippet'>anchor</a></sup>
310+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/UniqueForSample.cs#L1-L66' title='Snippet source file'>snippet source</a> | <a href='#snippet-UniqueForSampleXunit' title='Start of snippet'>anchor</a></sup>
311311
<!-- endSnippet -->
312312

313313

@@ -534,7 +534,7 @@ public class ExtensionSample
534534
extension: "xml");
535535
}
536536
```
537-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ExtensionSample.cs#L1-L30' title='Snippet source file'>snippet source</a> | <a href='#snippet-XunitExtensionSample' title='Start of snippet'>anchor</a></sup>
537+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ExtensionSample.cs#L1-L30' title='Snippet source file'>snippet source</a> | <a href='#snippet-XunitExtensionSample' title='Start of snippet'>anchor</a></sup>
538538
<!-- endSnippet -->
539539

540540
Result in:
@@ -593,7 +593,7 @@ Verifier.DerivePathInfo(
593593
typeName: type.Name,
594594
methodName: method.Name));
595595
```
596-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L8-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-DerivePathInfoXUnit' title='Start of snippet'>anchor</a></sup>
596+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L8-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-DerivePathInfoXUnit' title='Start of snippet'>anchor</a></sup>
597597
<!-- endSnippet -->
598598

599599

docs/parameterised.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Task UseParametersUsage(string arg)
4444
.UseParameters(arg);
4545
}
4646
```
47-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L100-L112' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParameters' title='Start of snippet'>anchor</a></sup>
47+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L100-L112' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParameters' title='Start of snippet'>anchor</a></sup>
4848
<!-- endSnippet -->
4949

5050
If not all parameters are required, a subset can be passed in. In this scenario, the parameters passed in will match with the method parameter names from the start. For example the following will result in a file named `ParametersSample.UseParametersSubSet_arg1=Value1_arg2=Value2.verified.txt`
@@ -61,7 +61,7 @@ public Task UseParametersSubSet(string arg1, string arg2, string arg3)
6161
.UseParameters(arg1, arg2);
6262
}
6363
```
64-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L114-L125' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParametersSubSet' title='Start of snippet'>anchor</a></sup>
64+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L114-L125' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParametersSubSet' title='Start of snippet'>anchor</a></sup>
6565
<!-- endSnippet -->
6666

6767
If the number of parameters passed to `UseParameters()` is greater than the number of parameters in the test method, an exception will be thrown.
@@ -152,7 +152,7 @@ public Task InlineDataUsageFluent(string arg) =>
152152
Verify(arg)
153153
.UseParameters(arg);
154154
```
155-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L79-L98' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitInlineData' title='Start of snippet'>anchor</a></sup>
155+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L79-L98' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitInlineData' title='Start of snippet'>anchor</a></sup>
156156
<!-- endSnippet -->
157157

158158

@@ -188,7 +188,7 @@ public static IEnumerable<object[]> GetData()
188188
];
189189
}
190190
```
191-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L127-L156' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitMemberData' title='Start of snippet'>anchor</a></sup>
191+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L127-L156' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitMemberData' title='Start of snippet'>anchor</a></sup>
192192
<!-- endSnippet -->
193193

194194

@@ -291,7 +291,7 @@ public class ComplexParametersSample
291291
public record ComplexStructData(string Value);
292292
}
293293
```
294-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ComplexParametersSample.cs#L1-L95' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitComplexMemberData' title='Start of snippet'>anchor</a></sup>
294+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ComplexParametersSample.cs#L1-L95' title='Snippet source file'>snippet source</a> | <a href='#snippet-xunitComplexMemberData' title='Start of snippet'>anchor</a></sup>
295295
<!-- endSnippet -->
296296

297297
`VerifierSettings.NameForParameter()` is required since the parameter type has no `ToString()` override that can be used for deriving the name of the `.verified.` file.
@@ -475,7 +475,7 @@ public Task IgnoreParametersForVerified(string arg)
475475
return Verify("value", settings);
476476
}
477477
```
478-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L11-L23' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedXunit' title='Start of snippet'>anchor</a></sup>
478+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L11-L23' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedXunit' title='Start of snippet'>anchor</a></sup>
479479
<!-- endSnippet -->
480480

481481

@@ -491,7 +491,7 @@ public Task IgnoreParametersForVerifiedFluent(string arg) =>
491491
Verify("value")
492492
.IgnoreParametersForVerified(arg);
493493
```
494-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L25-L34' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedFluentXunit' title='Start of snippet'>anchor</a></sup>
494+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L25-L34' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedFluentXunit' title='Start of snippet'>anchor</a></sup>
495495
<!-- endSnippet -->
496496

497497

@@ -592,7 +592,7 @@ public Task IgnoreParametersForVerifiedCustomParams(string arg)
592592
return Verify("value", settings);
593593
}
594594
```
595-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L36-L48' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedCustomParamsXunit' title='Start of snippet'>anchor</a></sup>
595+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L36-L48' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedCustomParamsXunit' title='Start of snippet'>anchor</a></sup>
596596
<!-- endSnippet -->
597597

598598

@@ -608,7 +608,7 @@ public Task IgnoreParametersForVerifiedCustomParamsFluent(string arg) =>
608608
Verify("value")
609609
.IgnoreParametersForVerified($"Number{arg}");
610610
```
611-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersSample.cs#L50-L59' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedCustomParamsFluentXunit' title='Start of snippet'>anchor</a></sup>
611+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersSample.cs#L50-L59' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreParametersForVerifiedCustomParamsFluentXunit' title='Start of snippet'>anchor</a></sup>
612612
<!-- endSnippet -->
613613

614614

@@ -851,7 +851,7 @@ public class ParametersHashSample
851851
.HashParameters();
852852
}
853853
```
854-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/ParametersHashSample.cs#L1-L42' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParametersHashXunit' title='Start of snippet'>anchor</a></sup>
854+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/ParametersHashSample.cs#L1-L42' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseParametersHashXunit' title='Start of snippet'>anchor</a></sup>
855855
<!-- endSnippet -->
856856

857857

docs/scrubbers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ public class ScrubbersSample
394394
.ScrubEmptyLines();
395395
}
396396
```
397-
<sup><a href='/src/Verify.Xunit.Tests/Scrubbers/ScrubbersSample.cs#L1-L129' title='Snippet source file'>snippet source</a> | <a href='#snippet-ScrubbersSampleXunit' title='Start of snippet'>anchor</a></sup>
397+
<sup><a href='/src/Verify.XunitV3.Tests/Scrubbers/ScrubbersSample.cs#L1-L129' title='Snippet source file'>snippet source</a> | <a href='#snippet-ScrubbersSampleXunit' title='Start of snippet'>anchor</a></sup>
398398
<!-- endSnippet -->
399399

400400

@@ -743,7 +743,7 @@ public class ScrubberLevelsSample
743743
VerifierSettings.AddScrubber(_ => _.Replace("One", "A"));
744744
}
745745
```
746-
<sup><a href='/src/Verify.Xunit.Tests/Scrubbers/ScrubberLevelsSample.cs#L1-L31' title='Snippet source file'>snippet source</a> | <a href='#snippet-ScrubberLevelsSampleXunit' title='Start of snippet'>anchor</a></sup>
746+
<sup><a href='/src/Verify.XunitV3.Tests/Scrubbers/ScrubberLevelsSample.cs#L1-L31' title='Snippet source file'>snippet source</a> | <a href='#snippet-ScrubberLevelsSampleXunit' title='Start of snippet'>anchor</a></sup>
747747
<!-- endSnippet -->
748748

749749

docs/verify-directory.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Verifies all files in a directory. This approach combines [UseUniqueDirectory](/
1616
public Task WithDirectory() =>
1717
VerifyDirectory(directoryToVerify);
1818
```
19-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L95-L101' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryXunit' title='Start of snippet'>anchor</a></sup>
19+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L95-L101' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryXunit' title='Start of snippet'>anchor</a></sup>
2020
<!-- endSnippet -->
2121

2222

@@ -36,7 +36,7 @@ public Task WithDirectoryFiltered() =>
3636
RecurseSubdirectories = false
3737
});
3838
```
39-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L132-L145' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryFilterXunit' title='Start of snippet'>anchor</a></sup>
39+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L132-L145' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryFilterXunit' title='Start of snippet'>anchor</a></sup>
4040
<!-- endSnippet -->
4141

4242

@@ -53,7 +53,7 @@ public Task VerifyDirectoryWithInfo() =>
5353
directoryToVerify,
5454
info: "the info");
5555
```
56-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L103-L111' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryWithInfo' title='Start of snippet'>anchor</a></sup>
56+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L103-L111' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryWithInfo' title='Start of snippet'>anchor</a></sup>
5757
<!-- endSnippet -->
5858

5959

@@ -77,7 +77,7 @@ public Task VerifyDirectoryWithFileScrubber() =>
7777
}
7878
});
7979
```
80-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L113-L128' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryWithFileScrubber' title='Start of snippet'>anchor</a></sup>
80+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L113-L128' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyDirectoryWithFileScrubber' title='Start of snippet'>anchor</a></sup>
8181
<!-- endSnippet -->
8282

8383
This applies to files where the extensins is a known text file as defined by [FileExtensions.IsText](https://github.com/VerifyTests/EmptyFiles#istext).

docs/verify-zip.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Verifies all files in a zip archive. This approach combines [UseUniqueDirectory]
1616
public Task WithZip() =>
1717
VerifyZip(zipPath);
1818
```
19-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L151-L157' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipXunit' title='Start of snippet'>anchor</a></sup>
19+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L151-L157' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipXunit' title='Start of snippet'>anchor</a></sup>
2020
<!-- endSnippet -->
2121

2222

@@ -31,7 +31,7 @@ public Task WithZipFiltered() =>
3131
zipPath,
3232
include: filePath => filePath.FullName.Contains("Doc"));
3333
```
34-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L186-L194' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipFilterXunit' title='Start of snippet'>anchor</a></sup>
34+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L186-L194' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipFilterXunit' title='Start of snippet'>anchor</a></sup>
3535
<!-- endSnippet -->
3636

3737

@@ -48,7 +48,7 @@ public Task VerifyZipWithInfo() =>
4848
zipPath,
4949
info: "the info");
5050
```
51-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L159-L167' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipWithInfo' title='Start of snippet'>anchor</a></sup>
51+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L159-L167' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipWithInfo' title='Start of snippet'>anchor</a></sup>
5252
<!-- endSnippet -->
5353

5454

@@ -72,7 +72,7 @@ public Task VerifyZipWithFileScrubber() =>
7272
}
7373
});
7474
```
75-
<sup><a href='/src/Verify.Xunit.Tests/Tests.cs#L169-L184' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipWithFileScrubber' title='Start of snippet'>anchor</a></sup>
75+
<sup><a href='/src/Verify.XunitV3.Tests/Tests.cs#L169-L184' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyZipWithFileScrubber' title='Start of snippet'>anchor</a></sup>
7676
<!-- endSnippet -->
7777

7878
This applies to files where the extensins is a known text file as defined by [FileExtensions.IsText](https://github.com/VerifyTests/EmptyFiles#istext).

docs/wiz/Linux_Other_Cli_Xunit_AppVeyor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public class Sample
146146
}
147147
}
148148
```
149-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
149+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
150150
<!-- endSnippet -->
151151

152152
## Diff Tool

docs/wiz/Linux_Other_Cli_Xunit_AzureDevOps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public class Sample
146146
}
147147
}
148148
```
149-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
149+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
150150
<!-- endSnippet -->
151151

152152
## Diff Tool

docs/wiz/Linux_Other_Cli_Xunit_GitHubActions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public class Sample
146146
}
147147
}
148148
```
149-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
149+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
150150
<!-- endSnippet -->
151151

152152
## Diff Tool

docs/wiz/Linux_Other_Cli_Xunit_None.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public class Sample
146146
}
147147
}
148148
```
149-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
149+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
150150
<!-- endSnippet -->
151151

152152
## Diff Tool

docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class Sample
140140
}
141141
}
142142
```
143-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
143+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
144144
<!-- endSnippet -->
145145

146146
## Diff Tool

docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class Sample
140140
}
141141
}
142142
```
143-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
143+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
144144
<!-- endSnippet -->
145145

146146
## Diff Tool

docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class Sample
140140
}
141141
}
142142
```
143-
<sup><a href='/src/Verify.Xunit.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
143+
<sup><a href='/src/Verify.XunitV3.Tests/Snippets/Sample.cs#L1-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-SampleTestXunit' title='Start of snippet'>anchor</a></sup>
144144
<!-- endSnippet -->
145145

146146
## Diff Tool

0 commit comments

Comments
 (0)