Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/VerifyTests/Verify
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jul 25, 2024
2 parents 0697db4 + d0a1201 commit 1f08dbc
Show file tree
Hide file tree
Showing 183 changed files with 369 additions and 278 deletions.
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ General questions may be better placed [StackOveflow](https://stackoverflow.com/

Where relevant, ensure you are using the current stable versions on your development stack. For example:

* Visual Studio
* Visual Studio or Rider
* [.NET SDK or .NET Core SDK](https://www.microsoft.com/net/download)
* Any related NuGet packages

Expand All @@ -30,7 +30,8 @@ Add any other context about the problem here.

#### Minimal Repro

Ensure you have replicated the bug in a minimal solution with the fewest moving parts. Often this will help point to the true cause of the problem. Upload this repro as part of the issue, preferably a public GitHub repository or a downloadable zip. The repro will allow the maintainers of this project to smoke test the any fix.
Ensure you have replicated the bug in a minimal solution with the fewest moving parts. Often this will help point to the true cause of the problem. Upload this repro as part of the issue, as a public GitHub repository or a downloadable zip. The repro will allow the maintainers of this project to smoke test the any fix.


#### Submit a PR that fixes the bug

Expand Down
5 changes: 4 additions & 1 deletion docs/mdsource/parameterised.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ When using a [TestFixtureSource](https://docs.nunit.org/articles/nunit/writing-t

snippet: TestFixtureSourceUsage.cs

Produces `TestFixtureSourceUsage(Value1,1).Test.verified.txt` and `TestFixtureSourceUsage(Value2,2).Test.verified.txt`.
Produces:

* `TestFixtureSourceUsage.Test_arg1=Value1_arg2=1.verified.txt`
* `TestFixtureSourceUsage.Test_arg1=Value2_arg2=2.verified.txt`


## xUnit
Expand Down
5 changes: 4 additions & 1 deletion docs/parameterised.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ public class TestFixtureSourceUsage(string arg1, int arg2)
<sup><a href='/src/Verify.NUnit.Tests/TestFixtureSourceUsage.cs#L1-L26' title='Snippet source file'>snippet source</a> | <a href='#snippet-TestFixtureSourceUsage.cs' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Produces `TestFixtureSourceUsage(Value1,1).Test.verified.txt` and `TestFixtureSourceUsage(Value2,2).Test.verified.txt`.
Produces:

* `TestFixtureSourceUsage.Test_arg1=Value1_arg2=1.verified.txt`
* `TestFixtureSourceUsage.Test_arg1=Value2_arg2=2.verified.txt`


## xUnit
Expand Down
18 changes: 9 additions & 9 deletions docs/recording.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public Task RecordingScoped()
return Verify();
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L73-L88' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingScoped' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L82-L97' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingScoped' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -117,7 +117,7 @@ public Task SameKey()
return Verify("TheValue");
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L272-L283' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingSameKey' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L288-L299' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingSameKey' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -154,7 +154,7 @@ public Task Identifier()
return Verify(Recording.Stop("identifier"));
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L90-L100' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingIdentifier' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L99-L109' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingIdentifier' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -186,7 +186,7 @@ public Task Case()
return Verify("TheValue");
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L294-L305' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingIgnoreCase' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L310-L321' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingIgnoreCase' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -221,7 +221,7 @@ public Task Stop()
return Verify(appends.Where(_ => _.Name != "name1"));
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L132-L144' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingStop' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L141-L153' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingStop' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -253,7 +253,7 @@ public Task StopNotInResult()
return Verify("other data");
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L146-L158' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingStopNotInResult' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L155-L167' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingStopNotInResult' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -282,7 +282,7 @@ public void IsRecording()
Assert.True(Recording.IsRecording());
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L102-L112' title='Snippet source file'>snippet source</a> | <a href='#snippet-IsRecording' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L111-L121' title='Snippet source file'>snippet source</a> | <a href='#snippet-IsRecording' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

This can be helpful if the cost of capturing data, to add to recording, is high.
Expand All @@ -305,7 +305,7 @@ public Task Clear()
return Verify();
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L192-L204' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingClear' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L208-L220' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingClear' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down Expand Up @@ -341,7 +341,7 @@ public Task PauseResume()
return Verify();
}
```
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L216-L231' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingPauseResume' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/RecordingTests.cs#L232-L247' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordingPauseResume' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Results in:
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Fixie_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_MSTest_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_NUnit_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-xunit-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Verify.Xunit" Version="25.3.2" />
<PackageReference Include="Verify.Xunit" Version="26.0.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-xunit-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Verify.Xunit" Version="25.3.2" />
<PackageReference Include="Verify.Xunit" Version="26.0.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-xunit-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Verify.Xunit" Version="25.3.2" />
<PackageReference Include="Verify.Xunit" Version="26.0.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Xunit_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-xunit-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Verify.Xunit" Version="25.3.2" />
<PackageReference Include="Verify.Xunit" Version="26.0.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_Fixie_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-fixie-nugets'></a>
```csproj
<PackageReference Include="Fixie" Version="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="25.3.2" />
<PackageReference Include="Verify.Fixie" Version="26.0.1" />
```
<sup><a href='/usages/FixieNugetUsage/FixieNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-fixie-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_MSTest_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following packages to the test project:
<a id='snippet-mstest-nugets'></a>
```csproj
<PackageReference Include="MSTest" Version="3.5.0" />
<PackageReference Include="Verify.MSTest" Version="25.3.2" />
<PackageReference Include="Verify.MSTest" Version="26.0.1" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="25.3.2" />
<PackageReference Include="Verify.NUnit" Version="26.0.1" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
Loading

0 comments on commit 1f08dbc

Please sign in to comment.