Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Mar 7, 2024
1 parent 09c6466 commit 0e07a00
Show file tree
Hide file tree
Showing 165 changed files with 179 additions and 215 deletions.
66 changes: 15 additions & 51 deletions docs/serializer-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public Task ScopedSerializerFluent()
.AddExtraSettings(_ => _.TypeNameHandling = TypeNameHandling.All);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3698-L3725' title='Snippet source file'>snippet source</a> | <a href='#snippet-scopedserializer' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3708-L3735' title='Snippet source file'>snippet source</a> | <a href='#snippet-scopedserializer' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -799,7 +799,7 @@ public Task WithObsoleteProp()
return Verify(target);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3663-L3684' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoleteprop' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3673-L3694' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoleteprop' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -847,7 +847,7 @@ public Task WithObsoletePropIncludedFluent()
.IncludeObsoletes();
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3634-L3661' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoletepropincluded' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3644-L3671' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoletepropincluded' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally:
Expand All @@ -857,7 +857,7 @@ Or globally:
```cs
VerifierSettings.IncludeObsoletes();
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3627-L3631' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoletepropincludedglobally' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3637-L3641' title='Snippet source file'>snippet source</a> | <a href='#snippet-withobsoletepropincludedglobally' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -918,7 +918,7 @@ public Task IgnoreMemberByExpressionFluent()
_ => _.PropertyThatThrows);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3145-L3184' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyexpression' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3155-L3194' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyexpression' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally
Expand All @@ -933,7 +933,7 @@ VerifierSettings.IgnoreMembers<IgnoreExplicitTarget>(
_ => _.GetOnlyProperty,
_ => _.PropertyThatThrows);
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3122-L3131' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyexpressionglobal' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3132-L3141' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyexpressionglobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -993,7 +993,7 @@ public Task ScrubMemberByExpressionFluent()
_ => _.PropertyThatThrows);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3186-L3225' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyexpression' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3196-L3235' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyexpression' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally
Expand All @@ -1008,7 +1008,7 @@ VerifierSettings.ScrubMembers<IgnoreExplicitTarget>(
_ => _.GetOnlyProperty,
_ => _.PropertyThatThrows);
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3133-L3142' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyexpressionglobal' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3143-L3152' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyexpressionglobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -1087,7 +1087,7 @@ public Task IgnoreMemberByNameFluent()
.IgnoreMember<IgnoreExplicitTarget>(_ => _.PropertyThatThrows);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3299-L3352' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyname' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3309-L3362' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbyname' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally:
Expand All @@ -1107,7 +1107,7 @@ VerifierSettings.IgnoreMember<IgnoreExplicitTarget>("Field");
// For a specific type with expression
VerifierSettings.IgnoreMember<IgnoreExplicitTarget>(_ => _.PropertyThatThrows);
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3266-L3280' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbynameglobal' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3276-L3290' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorememberbynameglobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -1182,7 +1182,7 @@ public Task ScrubMemberByNameFluent()
.ScrubMember<IgnoreExplicitTarget>(_ => _.PropertyThatThrows);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3354-L3407' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyname' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3364-L3417' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbyname' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally:
Expand All @@ -1202,7 +1202,7 @@ VerifierSettings.ScrubMember<IgnoreExplicitTarget>("Field");
// For a specific type with expression
VerifierSettings.ScrubMember<IgnoreExplicitTarget>(_ => _.PropertyThatThrows);
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3282-L3296' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbynameglobal' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3292-L3306' title='Snippet source file'>snippet source</a> | <a href='#snippet-scrubmemberbynameglobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -1253,7 +1253,7 @@ public Task CustomExceptionPropFluent()
.IgnoreMembersThatThrow<CustomException>();
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3515-L3534' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignoremembersthatthrow' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3525-L3544' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignoremembersthatthrow' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Or globally:
Expand All @@ -1263,7 +1263,7 @@ Or globally:
```cs
VerifierSettings.IgnoreMembersThatThrow<CustomException>();
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3508-L3512' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignoremembersthatthrowglobal' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3518-L3522' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignoremembersthatthrowglobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:
Expand Down Expand Up @@ -1323,42 +1323,6 @@ Result:
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.ExceptionMessageProp.verified.txt#L1-L1' title='Snippet source file'>snippet source</a> | <a href='#snippet-SerializationTests.ExceptionMessageProp.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

## Always Include Members

Sometimes it's convenient for certain members/types to always be included in the Verify output, even when they are equal to their default value.
The biggest example is numeric types e.g. `int` or `double` - output could be more consistent if values might fluctuate between zero and non-zero.

<!-- snippet: AlwaysIncludeType -->
<a id='snippet-alwaysincludetype'></a>
```cs
[Fact]
public Task AlwaysIncludeType()
{
var target = new
{
A = 0.0,
B = 1e-26
};

return Verify(target)
.AlwaysIncludeMembersWithType<double>();
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L2976-L2987' title='Snippet source file'>snippet source</a> | <a href='#snippet-alwaysincludetype' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Result:

<!-- snippet: SerializationTests.AlwaysIncludeType.verified.txt -->
<a id='snippet-SerializationTests.AlwaysIncludeType.verified.txt'></a>
```txt
{
A: 0.0,
B: 1E-26
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.AlwaysIncludeType.verified.txt#L1-L4' title='Snippet source file'>snippet source</a> | <a href='#snippet-SerializationTests.AlwaysIncludeType.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

## TreatAsString

Expand Down Expand Up @@ -1504,7 +1468,7 @@ public Task MemberConverterByExpression()
return Verify(input);
}
```
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3227-L3255' title='Snippet source file'>snippet source</a> | <a href='#snippet-memberconverter' title='Start of snippet'>anchor</a></sup>
<sup><a href='/src/Verify.Tests/Serialization/SerializationTests.cs#L3237-L3265' title='Snippet source file'>snippet source</a> | <a href='#snippet-memberconverter' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->


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.14.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Include="Verify.Expecto" Version="23.2.2" />
<PackageReference Include="Verify.Expecto" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.14.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Include="Verify.Expecto" Version="23.2.2" />
<PackageReference Include="Verify.Expecto" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.14.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Include="Verify.Expecto" Version="23.2.2" />
<PackageReference Include="Verify.Expecto" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.14.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Include="Verify.Expecto" Version="23.2.2" />
<PackageReference Include="Verify.Expecto" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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="3.4.0" />
<PackageReference Include="Verify.Fixie" Version="23.2.2" />
<PackageReference Include="Verify.Fixie" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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="23.2.2" />
<PackageReference Include="Verify.Fixie" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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="23.2.2" />
<PackageReference Include="Verify.Fixie" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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="23.2.2" />
<PackageReference Include="Verify.Fixie" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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 @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L12' 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 @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L12' 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 @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L12' 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 @@ -20,7 +20,7 @@ Add the following packages to the test project:
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.2" />
<PackageReference Include="Verify.MSTest" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/MSTestNugetUsage/MSTestNugetUsage.csproj#L7-L12' 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.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="23.2.2" />
<PackageReference Include="Verify.NUnit" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="23.2.2" />
<PackageReference Include="Verify.NUnit" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="23.2.2" />
<PackageReference Include="Verify.NUnit" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Verify.NUnit" Version="23.2.2" />
<PackageReference Include="Verify.NUnit" Version="23.2.3" />
```
<sup><a href='/src/NugetUsage/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.9.0" />
<PackageReference Include="Verify.Xunit" Version="23.2.2" />
<PackageReference Include="Verify.Xunit" Version="23.2.3" />
<PackageReference Include="Xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7" PrivateAssets="all" />
```
Expand Down

0 comments on commit 0e07a00

Please sign in to comment.