Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/mdsource/ignore-parameters.include.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,18 @@ For the fluent case:
* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
18 changes: 17 additions & 1 deletion docs/parameterised-fixie.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,23 @@ For the fluent case:

* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt<!-- endInclude -->
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
<!-- endInclude -->


## IgnoreParametersForVerified with override parameters
Expand Down
18 changes: 17 additions & 1 deletion docs/parameterised-mstest.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,23 @@ For the fluent case:

* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt<!-- endInclude -->
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
<!-- endInclude -->


### Instance
Expand Down
18 changes: 17 additions & 1 deletion docs/parameterised-nunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,23 @@ For the fluent case:

* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt<!-- endInclude -->
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
<!-- endInclude -->


### Instance
Expand Down
18 changes: 17 additions & 1 deletion docs/parameterised-tunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,23 @@ For the fluent case:

* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt<!-- endInclude -->
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
<!-- endInclude -->


### Instance
Expand Down
18 changes: 17 additions & 1 deletion docs/parameterised-xunitv3.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,23 @@ For the fluent case:

* NamerTests.IgnoreParametersForVerifiedFluent_arg=One.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent_arg=Two.received.txt
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt<!-- endInclude -->
* NamerTests.IgnoreParametersForVerifiedFluent.verified.txt


### Static IgnoreParameters

`VerifierSettings.IgnoreParameters()` can be used to globally ignore specific parameters (by name) for all tests. This is useful when a parameter is non-deterministic or irrelevant to the verified output across the entire test suite. It must be called before any test runs, typically in a `[ModuleInitializer]`.

When passing an empty list, all parameters will be ignored. When passing specific parameter names, only those parameters will be excluded from the verified filename. Parameters that do not exist on a given test method are silently skipped.

The received files still contain all parameter values.

```cs
[ModuleInitializer]
public static void Init() =>
VerifierSettings.IgnoreParameters("arg");
```
<!-- endInclude -->


### Instance
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.15.5" />
<PackageReference Include="Expecto" Version="10.2.3" />
<PackageReference Update="FSharp.Core" Version="10.1.201" />
<PackageReference Include="Verify.Expecto" Version="31.13.4" />
<PackageReference Include="Verify.Expecto" Version="31.13.5" />
```
<sup><a href='/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj#L8-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-expecto-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.15.5" />
<PackageReference Include="Expecto" Version="10.2.3" />
<PackageReference Update="FSharp.Core" Version="10.1.201" />
<PackageReference Include="Verify.Expecto" Version="31.13.4" />
<PackageReference Include="Verify.Expecto" Version="31.13.5" />
```
<sup><a href='/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj#L8-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-expecto-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.15.5" />
<PackageReference Include="Expecto" Version="10.2.3" />
<PackageReference Update="FSharp.Core" Version="10.1.201" />
<PackageReference Include="Verify.Expecto" Version="31.13.4" />
<PackageReference Include="Verify.Expecto" Version="31.13.5" />
```
<sup><a href='/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj#L8-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-expecto-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_Expecto_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.15.5" />
<PackageReference Include="Expecto" Version="10.2.3" />
<PackageReference Update="FSharp.Core" Version="10.1.201" />
<PackageReference Include="Verify.Expecto" Version="31.13.4" />
<PackageReference Include="Verify.Expecto" Version="31.13.5" />
```
<sup><a href='/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj#L8-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-expecto-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
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="4.2.0" />
<PackageReference Include="Verify.Fixie" Version="31.13.4" />
<PackageReference Include="Verify.Fixie" Version="31.13.5" />
```
<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="4.2.0" />
<PackageReference Include="Verify.Fixie" Version="31.13.4" />
<PackageReference Include="Verify.Fixie" Version="31.13.5" />
```
<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="4.2.0" />
<PackageReference Include="Verify.Fixie" Version="31.13.4" />
<PackageReference Include="Verify.Fixie" Version="31.13.5" />
```
<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="4.2.0" />
<PackageReference Include="Verify.Fixie" Version="31.13.4" />
<PackageReference Include="Verify.Fixie" Version="31.13.5" />
```
<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 @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="MSTest" Version="4.1.0" />
<PackageReference Include="Verify.MSTest" Version="31.13.4" />
<PackageReference Include="Verify.MSTest" Version="31.13.5" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L11' 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 @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="MSTest" Version="4.1.0" />
<PackageReference Include="Verify.MSTest" Version="31.13.4" />
<PackageReference Include="Verify.MSTest" Version="31.13.5" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L11' 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 @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="MSTest" Version="4.1.0" />
<PackageReference Include="Verify.MSTest" Version="31.13.4" />
<PackageReference Include="Verify.MSTest" Version="31.13.5" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L11' 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 @@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="MSTest" Version="4.1.0" />
<PackageReference Include="Verify.MSTest" Version="31.13.4" />
<PackageReference Include="Verify.MSTest" Version="31.13.5" />
```
<sup><a href='/usages/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-mstest-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="Verify.NUnit" Version="31.13.4" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="Verify.NUnit" Version="31.13.5" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L12' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="Verify.NUnit" Version="31.13.4" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="Verify.NUnit" Version="31.13.5" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L12' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="Verify.NUnit" Version="31.13.4" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="Verify.NUnit" Version="31.13.5" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L12' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_NUnit_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Add the following packages to the test project:
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="Verify.NUnit" Version="31.13.4" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="Verify.NUnit" Version="31.13.5" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
```
<sup><a href='/usages/NUnitNugetUsage/NUnitNugetUsage.csproj#L7-L12' title='Snippet source file'>snippet source</a> | <a href='#snippet-nunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Add the following packages to the test project:
<!-- snippet: tunit-nugets -->
<a id='snippet-tunit-nugets'></a>
```csproj
<PackageReference Include="TUnit" Version="1.19.74" />
<PackageReference Include="Verify.TUnit" Version="31.13.4" />
<PackageReference Include="TUnit" Version="1.24.0" />
<PackageReference Include="Verify.TUnit" Version="31.13.5" />
```
<sup><a href='/usages/TUnitNugetUsage/TUnitNugetUsage.csproj#L8-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-tunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Add the following packages to the test project:
<!-- snippet: tunit-nugets -->
<a id='snippet-tunit-nugets'></a>
```csproj
<PackageReference Include="TUnit" Version="1.19.74" />
<PackageReference Include="Verify.TUnit" Version="31.13.4" />
<PackageReference Include="TUnit" Version="1.24.0" />
<PackageReference Include="Verify.TUnit" Version="31.13.5" />
```
<sup><a href='/usages/TUnitNugetUsage/TUnitNugetUsage.csproj#L8-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-tunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Add the following packages to the test project:
<!-- snippet: tunit-nugets -->
<a id='snippet-tunit-nugets'></a>
```csproj
<PackageReference Include="TUnit" Version="1.19.74" />
<PackageReference Include="Verify.TUnit" Version="31.13.4" />
<PackageReference Include="TUnit" Version="1.24.0" />
<PackageReference Include="Verify.TUnit" Version="31.13.5" />
```
<sup><a href='/usages/TUnitNugetUsage/TUnitNugetUsage.csproj#L8-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-tunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
4 changes: 2 additions & 2 deletions docs/wiz/Linux_Other_Gui_TUnit_None.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Add the following packages to the test project:
<!-- snippet: tunit-nugets -->
<a id='snippet-tunit-nugets'></a>
```csproj
<PackageReference Include="TUnit" Version="1.19.74" />
<PackageReference Include="Verify.TUnit" Version="31.13.4" />
<PackageReference Include="TUnit" Version="1.24.0" />
<PackageReference Include="Verify.TUnit" Version="31.13.5" />
```
<sup><a href='/usages/TUnitNugetUsage/TUnitNugetUsage.csproj#L8-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-tunit-nugets' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_XunitV3_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-xunitv3-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Verify.XunitV3" Version="31.13.4" />
<PackageReference Include="Verify.XunitV3" Version="31.13.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_XunitV3_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-xunitv3-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Verify.XunitV3" Version="31.13.4" />
<PackageReference Include="Verify.XunitV3" Version="31.13.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_XunitV3_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-xunitv3-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Verify.XunitV3" Version="31.13.4" />
<PackageReference Include="Verify.XunitV3" Version="31.13.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/wiz/Linux_Other_Gui_XunitV3_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-xunitv3-nugets'></a>
```csproj
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="Verify.XunitV3" Version="31.13.4" />
<PackageReference Include="Verify.XunitV3" Version="31.13.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
```
Expand Down
Loading
Loading