diff --git a/docs/explicit-targets.md b/docs/explicit-targets.md
index 01e7f000e6..f78650851b 100644
--- a/docs/explicit-targets.md
+++ b/docs/explicit-targets.md
@@ -100,7 +100,7 @@ public Task WithTargets() =>
name: "targetName")
]);
```
-snippet source | anchor
+snippet source | anchor
diff --git a/docs/mdsource/doc-index.include.md b/docs/mdsource/doc-index.include.md
index 5fe16f3464..6512309b96 100644
--- a/docs/mdsource/doc-index.include.md
+++ b/docs/mdsource/doc-index.include.md
@@ -17,6 +17,13 @@
* [File naming](/docs/naming.md)
* [AppendFile](/docs/append-file.md)
* [Parameterised tests](/docs/parameterised.md)
+ * [NUnit](parameterised-nunit.md)
+ * [Xunit V2](parameterised-xunitv2.md)
+ * [Xunit V3](parameterised-xunitv3.md)
+ * [MSTest](parameterised-mstest.md)
+ * [TUnit](parameterised-tunit.md)
+ * [Fixie](parameterised-fixie.md)
+ * [Expecto](parameterised-expecto.md)
* [Combinations](/docs/combinations.md)
* [Named Tuples](/docs/named-tuples.md)
* [Diff Engine](https://github.com/VerifyTests/DiffEngine)
diff --git a/docs/mdsource/parameterised-mstest.source.md b/docs/mdsource/parameterised-mstest.source.md
index f74c2279e5..19fda35a6e 100644
--- a/docs/mdsource/parameterised-mstest.source.md
+++ b/docs/mdsource/parameterised-mstest.source.md
@@ -5,9 +5,7 @@
`UseParameters()` controls what parameters are used when naming files.
-Verify.MSTest does not detect the parametrised arguments, as such `UseParameters()` is required.
-
-snippet: UseParametersMSTest
+Verify.MSTest automatically detects the method parameters. So `UseParameters()` is not required unless using custom parameters.
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`
@@ -18,22 +16,13 @@ If the number of parameters passed to `UseParameters()` is greater than the numb
### DataRow
-
-#### Instance
-
snippet: DataRowInstanceMSTest
-#### Fluent
-
-snippet: DataRowFluentMSTest
-
-
## Overriding text used for parameters
include: override-parameters-text
-
snippet: UseTextForParametersMSTest
diff --git a/docs/mdsource/parameterised.source.md b/docs/mdsource/parameterised.source.md
index 7e735c757f..af2a91b543 100644
--- a/docs/mdsource/parameterised.source.md
+++ b/docs/mdsource/parameterised.source.md
@@ -12,6 +12,5 @@ Parameterised test usage differs based on the test framework used.
* [Xunit V3](parameterised-xunitv3.md)
* [MSTest](parameterised-mstest.md)
* [TUnit](parameterised-tunit.md)
- * [MSTest](parameterised-mstest.md)
* [Fixie](parameterised-fixie.md)
* [Expecto](parameterised-expecto.md)
\ No newline at end of file
diff --git a/docs/parameterised-mstest.md b/docs/parameterised-mstest.md
index 3308e3ba71..af2420dfc0 100644
--- a/docs/parameterised-mstest.md
+++ b/docs/parameterised-mstest.md
@@ -12,23 +12,7 @@ To change this file edit the source file and then run MarkdownSnippets.
`UseParameters()` controls what parameters are used when naming files.
-Verify.MSTest does not detect the parametrised arguments, as such `UseParameters()` is required.
-
-
-
-```cs
-[DataTestMethod]
-[DataRow("Value1")]
-[DataRow("Value2")]
-public Task UseParametersUsage(string arg)
-{
- var somethingToVerify = $"{arg} some text";
- return Verify(somethingToVerify)
- .UseParameters(arg);
-}
-```
-snippet source | anchor
-
+Verify.MSTest automatically detects the method parameters. So `UseParameters()` is not required unless using custom parameters.
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`
@@ -44,7 +28,7 @@ public Task UseParametersSubSet(string arg1, string arg2, string arg3)
.UseParameters(arg1, arg2);
}
```
-snippet source | anchor
+snippet source | anchor
If the number of parameters passed to `UseParameters()` is greater than the number of parameters in the test method, an exception will be thrown.
@@ -52,39 +36,16 @@ If the number of parameters passed to `UseParameters()` is greater than the numb
### DataRow
-
-#### Instance
-
```cs
[DataTestMethod]
[DataRow("Value1")]
[DataRow("Value2")]
-public Task DataRowUsage(string arg)
-{
- var settings = new VerifySettings();
- settings.UseParameters(arg);
- return Verify(arg, settings);
-}
-```
-snippet source | anchor
-
-
-
-#### Fluent
-
-
-
-```cs
-[DataTestMethod]
-[DataRow("Value1")]
-[DataRow("Value2")]
-public Task DataRowUsageFluent(string arg) =>
- Verify(arg)
- .UseParameters(arg);
+public Task DataRowUsage(string arg) =>
+ Verify(arg);
```
-snippet source | anchor
+snippet source | anchor
@@ -108,7 +69,6 @@ For the fluent case:
* TheTest.UseTextForParametersFluent_Value1.verified.txt
* TheTest.UseTextForParametersFluent_Value2.verified.txt
-
```cs
@@ -158,7 +118,7 @@ public Task IgnoreParametersForVerified(string arg)
return Verify("value", settings);
}
```
-snippet source | anchor
+snippet source | anchor
@@ -174,7 +134,7 @@ public Task IgnoreParametersForVerifiedFluent(string arg) =>
Verify("value")
.IgnoreParametersForVerified(arg);
```
-snippet source | anchor
+snippet source | anchor
@@ -198,7 +158,7 @@ public Task IgnoreParametersForVerifiedCustomParams(string arg)
return Verify("value", settings);
}
```
-snippet source | anchor
+snippet source | anchor
@@ -214,7 +174,7 @@ public Task IgnoreParametersForVerifiedFluentCustomParams(string arg) =>
Verify("value")
.IgnoreParametersForVerified($"Number{arg}");
```
-snippet source | anchor
+snippet source | anchor
diff --git a/docs/parameterised.md b/docs/parameterised.md
index 01bf895ffc..f9d155c1f5 100644
--- a/docs/parameterised.md
+++ b/docs/parameterised.md
@@ -33,6 +33,5 @@ Parameterised test usage differs based on the test framework used.
* [Xunit V3](parameterised-xunitv3.md)
* [MSTest](parameterised-mstest.md)
* [TUnit](parameterised-tunit.md)
- * [MSTest](parameterised-mstest.md)
* [Fixie](parameterised-fixie.md)
* [Expecto](parameterised-expecto.md)
diff --git a/docs/readme.md b/docs/readme.md
index 9c32f516d1..d953eb0c47 100644
--- a/docs/readme.md
+++ b/docs/readme.md
@@ -26,6 +26,13 @@ To change this file edit the source file and then run MarkdownSnippets.
* [File naming](/docs/naming.md)
* [AppendFile](/docs/append-file.md)
* [Parameterised tests](/docs/parameterised.md)
+ * [NUnit](parameterised-nunit.md)
+ * [Xunit V2](parameterised-xunitv2.md)
+ * [Xunit V3](parameterised-xunitv3.md)
+ * [MSTest](parameterised-mstest.md)
+ * [TUnit](parameterised-tunit.md)
+ * [Fixie](parameterised-fixie.md)
+ * [Expecto](parameterised-expecto.md)
* [Combinations](/docs/combinations.md)
* [Named Tuples](/docs/named-tuples.md)
* [Diff Engine](https://github.com/VerifyTests/DiffEngine)
diff --git a/docs/serializer-settings.md b/docs/serializer-settings.md
index 96dd412044..4cf0c45f73 100644
--- a/docs/serializer-settings.md
+++ b/docs/serializer-settings.md
@@ -1367,7 +1367,7 @@ The default mapping is:
{
typeof(BigInteger), (target, _) => ((BigInteger) target).ToString(Culture.InvariantCulture)
},
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
{
typeof(Half), (target, _) => ((Half) target).ToString(Culture.InvariantCulture)
},
diff --git a/docs/verify-options.md b/docs/verify-options.md
index 2c250906be..3e84c670f1 100644
--- a/docs/verify-options.md
+++ b/docs/verify-options.md
@@ -184,7 +184,7 @@ public Task OnCallbacks()
return Verify("value", settings);
}
```
-snippet source | anchor
+snippet source | anchor
@@ -215,7 +215,7 @@ public Task OnFluentCallbacks() =>
return Task.CompletedTask;
});
```
-snippet source | anchor
+snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
index 6834947850..d999dd9f4b 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
index 8cd92f72ad..c8fe21937c 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
index 7121c75f06..9a8a93d9b1 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Expecto_None.md b/docs/wiz/Linux_Other_Gui_Expecto_None.md
index ad9464400f..cf756918a3 100644
--- a/docs/wiz/Linux_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
index 9179bc5128..984ece6ea5 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
index dd9f9dc406..6295f9a4d3 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
index 7ada3a8c11..728dd5c5a9 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Fixie_None.md b/docs/wiz/Linux_Other_Gui_Fixie_None.md
index 8a9f03dad3..00c751eb3d 100644
--- a/docs/wiz/Linux_Other_Gui_Fixie_None.md
+++ b/docs/wiz/Linux_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
index f574001be4..c4dd0d2e0d 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
index 712ef5ca42..a2917c20fc 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
index 2e355fdb25..d19db7bf35 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_MSTest_None.md b/docs/wiz/Linux_Other_Gui_MSTest_None.md
index f5bfd5f3c6..663f666a42 100644
--- a/docs/wiz/Linux_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Other_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
index d63757e787..1a34a2285c 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
index 0f407c7644..28f25489a6 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
index b400013284..a7ee34c2aa 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_NUnit_None.md b/docs/wiz/Linux_Other_Gui_NUnit_None.md
index a7fa7cc925..b9aff6b1a8 100644
--- a/docs/wiz/Linux_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md
index fcdddec6cd..3c3a037a0b 100644
--- a/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md
index da55066882..8c68fc72ea 100644
--- a/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md
index 02480591fe..b4c3b19f92 100644
--- a/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_TUnit_None.md b/docs/wiz/Linux_Other_Gui_TUnit_None.md
index 93c8f27ea4..749d6d87a9 100644
--- a/docs/wiz/Linux_Other_Gui_TUnit_None.md
+++ b/docs/wiz/Linux_Other_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md
index 55da222e1a..b42f348c5b 100644
--- a/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md
index 5ecacf7cfa..5560796c17 100644
--- a/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md
index 20abe333e7..38e34621bf 100644
--- a/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_None.md b/docs/wiz/Linux_Other_Gui_XunitV3_None.md
index b3ad04b0f7..cf97553445 100644
--- a/docs/wiz/Linux_Other_Gui_XunitV3_None.md
+++ b/docs/wiz/Linux_Other_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
index 494662b9e0..0efeb465ec 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
index 556a56aa42..7158a43582 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
index 52431091cd..3c10351835 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Other_Gui_Xunit_None.md b/docs/wiz/Linux_Other_Gui_Xunit_None.md
index 9128b9b8f3..192e90a201 100644
--- a/docs/wiz/Linux_Other_Gui_Xunit_None.md
+++ b/docs/wiz/Linux_Other_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
index d397ef8453..134266df17 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
index 72a69c03d5..3e962ad139 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
index cf1da19e12..db1c9a4bf0 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_None.md b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
index 3312b5018a..db2b78a7d4 100644
--- a/docs/wiz/Linux_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
index c6217e217e..ba9f6bcd0d 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
index 4edecef8ff..411ddbc428 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
index 0a7330a07f..e43e32fa58 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_None.md b/docs/wiz/Linux_Rider_Gui_Fixie_None.md
index 12cdc8398c..694d3c612f 100644
--- a/docs/wiz/Linux_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
index c93507ef85..66a01b93b9 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
index 9b3be883c8..fb23c60304 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
index 969cdea952..314212cf3b 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_None.md b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
index d0ce0745e6..b9026b195e 100644
--- a/docs/wiz/Linux_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Linux_Rider_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
index 3e7ba22ea6..d8deb6387c 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
index 71214c8ff3..691fc8ad95 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
index f227f9b5b9..cfe9461355 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_None.md b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
index 8a345126f1..6b6c2e6ae7 100644
--- a/docs/wiz/Linux_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md
index c9ec7ca90e..2256b858f2 100644
--- a/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md
index 8880ca8cff..136e1ba214 100644
--- a/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md
index 20e3e85c96..e7fcf7f1b2 100644
--- a/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_None.md b/docs/wiz/Linux_Rider_Gui_TUnit_None.md
index 6213ceb918..178e83b89d 100644
--- a/docs/wiz/Linux_Rider_Gui_TUnit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md
index 6fdd1ec8ee..460eba869a 100644
--- a/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md
index 0e813c1515..7b5156fc21 100644
--- a/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md
index 7bb35b44e3..2e46a3297b 100644
--- a/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_None.md b/docs/wiz/Linux_Rider_Gui_XunitV3_None.md
index f415a861a4..63a1192829 100644
--- a/docs/wiz/Linux_Rider_Gui_XunitV3_None.md
+++ b/docs/wiz/Linux_Rider_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
index 49d1eac37f..d721df1921 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
index b037e1e273..a9e5c686b2 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
index 0b8415215f..0c9b3153b7 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Linux_Rider_Gui_Xunit_None.md b/docs/wiz/Linux_Rider_Gui_Xunit_None.md
index 368781fae4..8b730e0253 100644
--- a/docs/wiz/Linux_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/Linux_Rider_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
index 2204ef0411..42af3fec49 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
index 9edf6e121e..9d098bda5c 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
index 5bba4720c1..826f442a67 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_None.md b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
index 4429d1c234..bcef5a5b9f 100644
--- a/docs/wiz/MacOS_Other_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
index 362ddd7501..080e613b94 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
index 8faf5fb183..f20d7e554f 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
index c53f3a6dae..84b25b2fad 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_None.md b/docs/wiz/MacOS_Other_Gui_Fixie_None.md
index 6a7b6679f8..4bce4be896 100644
--- a/docs/wiz/MacOS_Other_Gui_Fixie_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
index cb5a981b13..efdb77a01b 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
index d02365203c..a28afcf094 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
index a37252cfe1..81056baa8f 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_None.md b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
index 00bb1c5f5f..504e549d5d 100644
--- a/docs/wiz/MacOS_Other_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Other_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
index 308e1b5b60..c481f19017 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
index e0768ab5c2..99708c960d 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
index 8b22bbc091..28effe1cae 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_None.md b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
index 8608b18551..fe7d8ff13e 100644
--- a/docs/wiz/MacOS_Other_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md
index 50a5c09a44..21da2f6553 100644
--- a/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md
index 86135a9e35..66f3a611b4 100644
--- a/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md
index c55eef37cb..7a5c892066 100644
--- a/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_None.md b/docs/wiz/MacOS_Other_Gui_TUnit_None.md
index 4e2c27286a..9ffdb7edb3 100644
--- a/docs/wiz/MacOS_Other_Gui_TUnit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md
index 9035b087a2..44db5153b8 100644
--- a/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md
index a09fadeb76..1e7807da37 100644
--- a/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md
index a2165aef55..74148c732a 100644
--- a/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_None.md b/docs/wiz/MacOS_Other_Gui_XunitV3_None.md
index afe29690be..ed8bbadb4f 100644
--- a/docs/wiz/MacOS_Other_Gui_XunitV3_None.md
+++ b/docs/wiz/MacOS_Other_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
index 08232d334e..b3c994325a 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
index c42c3764d5..50f962ed4c 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
index f6cf97e49e..b97358d666 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Other_Gui_Xunit_None.md b/docs/wiz/MacOS_Other_Gui_Xunit_None.md
index cb521bc2b5..70245ff0da 100644
--- a/docs/wiz/MacOS_Other_Gui_Xunit_None.md
+++ b/docs/wiz/MacOS_Other_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
index d158099730..a63b084f80 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
index f2e3191665..49ab514927 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
index f0cd0954cd..7f66f0f0c8 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
index 725ecd0bab..03aae215ff 100644
--- a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
index 9fea583aca..a19081d401 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
index 2ae2dd30e6..26b560a161 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
index fc78d06d7d..197e7705e1 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
index edd384b2d2..97dfc203d8 100644
--- a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
index 9f30907f4b..cd8a459acf 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
index 520315f4be..bf2df8e5c0 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
index e7b6ae6e3e..c1d1df6582 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
index 2bba2fcd63..ffdf86607c 100644
--- a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
index 8be7d701d6..ff9b82c303 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
index 31a0acec24..e390c73794 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
index 4006d09788..2d1553fe5f 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
index cc5b62fda3..dea5bc3273 100644
--- a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md
index e3172b6ca1..7b7c77bfa3 100644
--- a/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md
index a98a8dc1ab..429568f153 100644
--- a/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md
index 641528474c..1895a3fbd1 100644
--- a/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_None.md b/docs/wiz/MacOS_Rider_Gui_TUnit_None.md
index ea825be6a1..68d76d60d0 100644
--- a/docs/wiz/MacOS_Rider_Gui_TUnit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md
index d5a7a2b8bf..636367222c 100644
--- a/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md
index 08076af2a3..12836f08a6 100644
--- a/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md
index c57c917afb..4b7350e41b 100644
--- a/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md
index 50523e7faf..cf16337e81 100644
--- a/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
index b4c160c9b8..5dd26d1520 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
index 950e4f4817..1272e16433 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
index 0de9931788..97ecebd386 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/MacOS_Rider_Gui_Xunit_None.md b/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
index 0f5570738b..1cb5f22efd 100644
--- a/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/MacOS_Rider_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
index 85dc3422c9..3117bdf261 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
index ddd1b31cec..34c5bf23a1 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
index 46af846140..ce37783172 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Expecto_None.md b/docs/wiz/Windows_Other_Gui_Expecto_None.md
index f8e6e605eb..4d4f3afc59 100644
--- a/docs/wiz/Windows_Other_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Other_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
index cb7abc4995..a0b6662b13 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
index c15690d438..56ae6b7f43 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
index 0fec8af0b1..2da25afc8f 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Fixie_None.md b/docs/wiz/Windows_Other_Gui_Fixie_None.md
index 4fb152f3ba..2b991a7db6 100644
--- a/docs/wiz/Windows_Other_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_Other_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
index b2cedb32ca..e47e0f04f9 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
index d40103083d..1a55a81cd2 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
index 78d6de1c1f..144de21203 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_MSTest_None.md b/docs/wiz/Windows_Other_Gui_MSTest_None.md
index 88b9bfbee1..95afb2ee25 100644
--- a/docs/wiz/Windows_Other_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Other_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
index 36725866d9..36dc67a06f 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
index ca37db0715..631b86d656 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
index 17881e3542..0cbc05dd07 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_NUnit_None.md b/docs/wiz/Windows_Other_Gui_NUnit_None.md
index ad775537ce..f54720254c 100644
--- a/docs/wiz/Windows_Other_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Other_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md
index 3c9150e55d..0c1980aad3 100644
--- a/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md
index 29e93db125..8572f144fc 100644
--- a/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md
index 575669134d..7011510e41 100644
--- a/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_TUnit_None.md b/docs/wiz/Windows_Other_Gui_TUnit_None.md
index ff3b514dce..bedf27f156 100644
--- a/docs/wiz/Windows_Other_Gui_TUnit_None.md
+++ b/docs/wiz/Windows_Other_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md
index 75400da7d9..12baa98152 100644
--- a/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md
index 609d329a53..7f51779509 100644
--- a/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md
index 8c1a7489c7..4c1ccdf846 100644
--- a/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_None.md b/docs/wiz/Windows_Other_Gui_XunitV3_None.md
index 6ce29e1a76..55b1447219 100644
--- a/docs/wiz/Windows_Other_Gui_XunitV3_None.md
+++ b/docs/wiz/Windows_Other_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
index 52900aa3fd..8d0e36eb68 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
index a277760337..2697d15773 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
index 4b36821366..8e77686ed4 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Other_Gui_Xunit_None.md b/docs/wiz/Windows_Other_Gui_Xunit_None.md
index 80513fdf0a..b23277081f 100644
--- a/docs/wiz/Windows_Other_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_Other_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
index f359db718a..af815b39ec 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
index ce317b6f50..0ef14a7711 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
index 7aa2358f7a..1fb8613ebf 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_None.md b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
index e097f4bee9..faf40ac97c 100644
--- a/docs/wiz/Windows_Rider_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
index 5ca07e257f..d7683dade0 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
index 5a74280317..191fe1e1f4 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
index bb8451c962..5d160527f9 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_None.md b/docs/wiz/Windows_Rider_Gui_Fixie_None.md
index 0e331103ae..77bbbc0be0 100644
--- a/docs/wiz/Windows_Rider_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
index b4b006c155..83ab49a22e 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
index 0752965c08..5af4827c9d 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
index fd5978ebad..4c7d4f4995 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_None.md b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
index e81adef83b..9f9d5ce02a 100644
--- a/docs/wiz/Windows_Rider_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_Rider_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
index 858cdc6654..1ccc2d0a08 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
index 8d34fb331c..466508537b 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
index fb08661c86..792efb128d 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_None.md b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
index 2a4bd7ff6f..6c38e15fb1 100644
--- a/docs/wiz/Windows_Rider_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md
index 8a61e54178..1fe433964d 100644
--- a/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md
index b0169634f5..53973f8d50 100644
--- a/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md
index a4c056db61..9cd5fa8fc0 100644
--- a/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_None.md b/docs/wiz/Windows_Rider_Gui_TUnit_None.md
index 282038870e..2733d200df 100644
--- a/docs/wiz/Windows_Rider_Gui_TUnit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md
index 53d7169c0e..aa500b822d 100644
--- a/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md
index cb4952ebc7..755ab81d4d 100644
--- a/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md
index 7ad9626717..cd7a1d9fda 100644
--- a/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_None.md b/docs/wiz/Windows_Rider_Gui_XunitV3_None.md
index 34bf4d6c83..f16783795d 100644
--- a/docs/wiz/Windows_Rider_Gui_XunitV3_None.md
+++ b/docs/wiz/Windows_Rider_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
index 6b57d4bd66..75e174df88 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
index 1db6035c02..83e9cb1b71 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
index 65e0bc5de2..978685a0d3 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_Rider_Gui_Xunit_None.md b/docs/wiz/Windows_Rider_Gui_Xunit_None.md
index d21b21e10f..16a494cee2 100644
--- a/docs/wiz/Windows_Rider_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_Rider_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
index b90c32437f..18e759032b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
index dd87362c66..c77eae954b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
index fc38bdd96e..84ed401486 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
index f3598e1811..a77f9c5d00 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
index 351ed539fd..d72773fc3e 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
index 19732e91ba..b1f6d4ca7f 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
index 893a381dcb..4932f3527e 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
index 765a35e169..3dceb1cad0 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
index 27c7085fec..da007f7aa2 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
index 99e0aef50b..8d43e049a9 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
index e4919f1047..8c48b6f8a0 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
index 6a1ea60558..f0bd544ceb 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
index 3a77b99af9..71a77e36ed 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
index 45e91cd72d..a9ce85df89 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
index 4cd004bacc..92768c7727 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
index 3ac4660833..099aad0de4 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md
index a2cd05af94..26ac14c8af 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md
index cd08e8ead4..23af0610cb 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md
index 0adc783aa4..00cc2843d9 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md
index 163c84fb76..89e43f27ec 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md
index 18d088ad75..1ad79b7847 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md
index 216b050269..104ace3c45 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md
index 119b28e7c6..bcfe31abde 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md
index 434d4151e2..55d1ac1b8b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
index 6847ed533e..7722bb5e8b 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
index fae42f81b4..c1e912ba13 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
index 77f8568c81..70cc8f76a8 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
index ebe856b4c2..e0c8252001 100644
--- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
index 455cec885c..515d0dbd57 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
index 193d12daef..4ffb492c61 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
index 6779672d60..a2b6c3122e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
index 35cd270262..5e42b06877 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md
@@ -20,7 +20,7 @@ Add the following packages to the test project:
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
index 4854e88cd8..d1e3e82a5d 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
index c5a1e640ae..b823bd31b1 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
index be1c499f00..c28149ef1a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
index b0902791d9..19a094bec5 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md
@@ -18,7 +18,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
index 12dd61afd0..e80b6b310c 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
index 395103210c..0673947ae8 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
index 391492c969..0576e1571d 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
index b0352ead7f..0aa57c4bca 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
index e41794616c..19b8cc308e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
index cfda48e41f..77c412b328 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
index 1a734987f5..8edc9d0474 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
index 8d5830277f..75cf3283bb 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md
@@ -19,7 +19,7 @@ Add the following packages to the test project:
```csproj
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md
index bafefcf532..85030cb235 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md
index 1735d86b71..6695a0614e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md
index 037a0b242a..4cf4f2b977 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md
index f537cb957a..fdf5ec9dd0 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md
@@ -17,8 +17,8 @@ Add the following packages to the test project:
```csproj
-
-
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md
index 3478507c82..c22f1b76d5 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md
index 8a2af98f76..30408a0c2e 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md
index 28017feb7d..0283939d1b 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md
index f0c7ff3aa0..44f6129833 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
-
-
+
+
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
index 54584abd16..a4d7dc6a3a 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AppVeyor.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
index bc5956d2fb..fd63502fbd 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_AzureDevOps.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
index cd8f555a86..5695558120 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_GitHubActions.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md b/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
index e543d7ef9f..1c0cd3e692 100644
--- a/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
+++ b/docs/wiz/Windows_VisualStudio_Gui_Xunit_None.md
@@ -18,9 +18,9 @@ Add the following packages to the test project:
```csproj
-
+
-
+
```
snippet source | anchor
diff --git a/readme.md b/readme.md
index ec41657dfd..74491ca47e 100644
--- a/readme.md
+++ b/readme.md
@@ -800,7 +800,7 @@ var result = await Verify(
});
Assert.Contains("Value To Check", result.Text);
```
-snippet source | anchor
+snippet source | anchor
If using `Verifier.Throws`, the resulting `Exception` will also be accessible
@@ -1004,6 +1004,13 @@ information sources and warn about particular gotchas:
* [File naming](/docs/naming.md)
* [AppendFile](/docs/append-file.md)
* [Parameterised tests](/docs/parameterised.md)
+ * [NUnit](parameterised-nunit.md)
+ * [Xunit V2](parameterised-xunitv2.md)
+ * [Xunit V3](parameterised-xunitv3.md)
+ * [MSTest](parameterised-mstest.md)
+ * [TUnit](parameterised-tunit.md)
+ * [Fixie](parameterised-fixie.md)
+ * [Expecto](parameterised-expecto.md)
* [Combinations](/docs/combinations.md)
* [Named Tuples](/docs/named-tuples.md)
* [Diff Engine](https://github.com/VerifyTests/DiffEngine)
diff --git a/src/.config/dotnet-tools.json b/src/.config/dotnet-tools.json
index 5b7e5fefde..84b4a14ca1 100644
--- a/src/.config/dotnet-tools.json
+++ b/src/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"fixie.console": {
- "version": "3.4.0",
+ "version": "4.1.0",
"commands": [
"fixie"
]
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index 28cc1a1d7c..a5d600a9b7 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -2,7 +2,7 @@
CA1822;CS1591;CS0649;xUnit1026;xUnit1013;CS1573;VerifyTestsProjectDir;VerifySetParameters;PolyFillTargetsForNuget
- 28.6.0
+ 28.7.0
enable
preview
1.0.0
diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props
index ae75ef345d..51100da079 100644
--- a/src/Directory.Packages.props
+++ b/src/Directory.Packages.props
@@ -19,19 +19,19 @@
-
-
+
+
-
+
-
+
-
-
+
+
diff --git a/src/Verify.Expecto/Verifier_Directory.cs b/src/Verify.Expecto/Verifier_Directory.cs
index f9c3e0a546..a7aa86bee0 100644
--- a/src/Verify.Expecto/Verifier_Directory.cs
+++ b/src/Verify.Expecto/Verifier_Directory.cs
@@ -4,7 +4,7 @@ namespace VerifyExpecto;
public static partial class Verifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.Fixie/Verifier_Directory.cs b/src/Verify.Fixie/Verifier_Directory.cs
index 68b58039f2..1433b939f6 100644
--- a/src/Verify.Fixie/Verifier_Directory.cs
+++ b/src/Verify.Fixie/Verifier_Directory.cs
@@ -2,7 +2,7 @@
public static partial class Verifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersHashSample.cs b/src/Verify.MSTest.Tests/Snippets/ParametersHashSample.cs
index 48d8472048..888ad855f1 100644
--- a/src/Verify.MSTest.Tests/Snippets/ParametersHashSample.cs
+++ b/src/Verify.MSTest.Tests/Snippets/ParametersHashSample.cs
@@ -9,7 +9,6 @@ public partial class ParametersHashSample
public Task HashParametersUsage(string arg)
{
var settings = new VerifySettings();
- settings.UseParameters(arg);
settings.HashParameters();
return Verify(arg, settings);
}
@@ -19,7 +18,6 @@ public Task HashParametersUsage(string arg)
[DataRow("Value2")]
public Task HashParametersUsageFluent(string arg) =>
Verify(arg)
- .UseParameters(arg)
.HashParameters();
}
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value1.verified.txt b/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value1.verified.txt
deleted file mode 100644
index 39d0344b5c..0000000000
--- a/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value1.verified.txt
+++ /dev/null
@@ -1 +0,0 @@
-Value1
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value2.verified.txt b/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value2.verified.txt
deleted file mode 100644
index 3696843c5e..0000000000
--- a/src/Verify.MSTest.Tests/Snippets/ParametersSample.DataRowUsageFluent_arg=Value2.verified.txt
+++ /dev/null
@@ -1 +0,0 @@
-Value2
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersSample.cs b/src/Verify.MSTest.Tests/Snippets/ParametersSample.cs
index 448faccc37..793b848afc 100644
--- a/src/Verify.MSTest.Tests/Snippets/ParametersSample.cs
+++ b/src/Verify.MSTest.Tests/Snippets/ParametersSample.cs
@@ -16,23 +16,8 @@ public Task UseTextForParameters(string arg) =>
[DataTestMethod]
[DataRow("Value1")]
[DataRow("Value2")]
- public Task DataRowUsage(string arg)
- {
- var settings = new VerifySettings();
- settings.UseParameters(arg);
- return Verify(arg, settings);
- }
-
- #endregion
-
- #region DataRowFluentMSTest
-
- [DataTestMethod]
- [DataRow("Value1")]
- [DataRow("Value2")]
- public Task DataRowUsageFluent(string arg) =>
- Verify(arg)
- .UseParameters(arg);
+ public Task DataRowUsage(string arg) =>
+ Verify(arg);
#endregion
@@ -94,7 +79,6 @@ public Task IgnoreParametersForVerifiedFluentCustomParams(string arg) =>
public Task IgnoreParameters(string arg)
{
var settings = new VerifySettings();
- settings.UseParameters(arg);
settings.IgnoreParameters(nameof(arg));
return Verify("value", settings);
}
@@ -108,7 +92,6 @@ public Task IgnoreParameters(string arg)
[DataRow("Two")]
public Task IgnoreParametersFluent(string arg) =>
Verify("value")
- .UseParameters(arg)
.IgnoreParameters(nameof(arg));
#endregion
@@ -128,20 +111,6 @@ public Task IgnoreParametersCustomParams(string arg)
#endregion
- #region UseParametersMSTest
-
- [DataTestMethod]
- [DataRow("Value1")]
- [DataRow("Value2")]
- public Task UseParametersUsage(string arg)
- {
- var somethingToVerify = $"{arg} some text";
- return Verify(somethingToVerify)
- .UseParameters(arg);
- }
-
- #endregion
-
#region UseParametersSubSetMSTest
[DataTestMethod]
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersTests.Float.verified.txt b/src/Verify.MSTest.Tests/Snippets/ParametersTests.Float.verified.txt
new file mode 100644
index 0000000000..5f282702bb
--- /dev/null
+++ b/src/Verify.MSTest.Tests/Snippets/ParametersTests.Float.verified.txt
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Snippets/ParametersTests.cs b/src/Verify.MSTest.Tests/Snippets/ParametersTests.cs
index 076bfe5fde..813bd2c950 100644
--- a/src/Verify.MSTest.Tests/Snippets/ParametersTests.cs
+++ b/src/Verify.MSTest.Tests/Snippets/ParametersTests.cs
@@ -5,19 +5,16 @@ public partial class ParametersTests
//[DataRow("1.1")]
//public async Task Decimal(decimal arg)
//{
- // await Verify(arg)
- // .UseParameters(arg);
+ // await Verify(arg);
//}
[DataTestMethod]
[DataRow((float) 1.1)]
public Task Float(float arg) =>
- Verify(arg)
- .UseParameters(arg);
+ Verify(arg);
[DataTestMethod]
[DataRow(1.1d)]
public Task Double(double arg) =>
- Verify(arg)
- .UseParameters(arg);
+ Verify(arg);
}
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Tests.MissingParameter.verified.txt b/src/Verify.MSTest.Tests/Tests.MissingParameter.verified.txt
deleted file mode 100644
index fdf74cdc4b..0000000000
--- a/src/Verify.MSTest.Tests/Tests.MissingParameter.verified.txt
+++ /dev/null
@@ -1 +0,0 @@
-Foo
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Tests.MissingParameter_arg=Value1.verified.txt b/src/Verify.MSTest.Tests/Tests.MissingParameter_arg=Value1.verified.txt
new file mode 100644
index 0000000000..5f282702bb
--- /dev/null
+++ b/src/Verify.MSTest.Tests/Tests.MissingParameter_arg=Value1.verified.txt
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/Verify.MSTest.Tests/Tests.cs b/src/Verify.MSTest.Tests/Tests.cs
index ff8aa30b96..958a0a0f75 100644
--- a/src/Verify.MSTest.Tests/Tests.cs
+++ b/src/Verify.MSTest.Tests/Tests.cs
@@ -20,11 +20,6 @@ static void DerivePathInfo()
#endregion
}
- [DataTestMethod]
- [DataRow("Value1")]
- public Task MissingParameter(string arg) =>
- Verify("Foo");
-
[DataTestMethod]
[DataRow("Value1")]
public Task UseFileNameWithParam(string arg) =>
diff --git a/src/Verify.MSTest/Verifier.cs b/src/Verify.MSTest/Verifier.cs
index 2fca092fab..872eb1a2b8 100644
--- a/src/Verify.MSTest/Verifier.cs
+++ b/src/Verify.MSTest/Verifier.cs
@@ -37,6 +37,15 @@ static InnerVerifier BuildVerifier(VerifySettings settings, string sourceFile, b
var type = context.TestClass;
var method = context.Method;
+ if (!settings.HasParameters)
+ {
+ var data = context.TestContext.TestData;
+ if (data != null)
+ {
+ settings.SetParameters(data);
+ }
+ }
+
VerifierSettings.AssignTargetAssembly(assembly);
var pathInfo = GetPathInfo(sourceFile, type, method);
return new(
diff --git a/src/Verify.MSTest/Verifier_Directory.cs b/src/Verify.MSTest/Verifier_Directory.cs
index 2dd4ff2895..11e7d33d9e 100644
--- a/src/Verify.MSTest/Verifier_Directory.cs
+++ b/src/Verify.MSTest/Verifier_Directory.cs
@@ -2,7 +2,7 @@ namespace VerifyMSTest;
partial class Verifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.MSTest/VerifyBase_Directory.cs b/src/Verify.MSTest/VerifyBase_Directory.cs
index 927d74152c..b8a87322c7 100644
--- a/src/Verify.MSTest/VerifyBase_Directory.cs
+++ b/src/Verify.MSTest/VerifyBase_Directory.cs
@@ -3,7 +3,7 @@ namespace VerifyMSTest;
partial class VerifyBase
{
#pragma warning disable CA1822 // Mark members as static
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.NUnit/Verifier_Directory.cs b/src/Verify.NUnit/Verifier_Directory.cs
index a1e45d2789..0e2c487278 100644
--- a/src/Verify.NUnit/Verifier_Directory.cs
+++ b/src/Verify.NUnit/Verifier_Directory.cs
@@ -2,7 +2,7 @@
public static partial class Verifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.NUnit/VerifyBase_Directory.cs b/src/Verify.NUnit/VerifyBase_Directory.cs
index abbccc108c..ac3be1f5a6 100644
--- a/src/Verify.NUnit/VerifyBase_Directory.cs
+++ b/src/Verify.NUnit/VerifyBase_Directory.cs
@@ -2,7 +2,7 @@
public partial class VerifyBase
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.TUnit/Verifier_Directory.cs b/src/Verify.TUnit/Verifier_Directory.cs
index 71a573f03d..372019f623 100644
--- a/src/Verify.TUnit/Verifier_Directory.cs
+++ b/src/Verify.TUnit/Verifier_Directory.cs
@@ -2,7 +2,7 @@
public static partial class Verifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Verifies the contents of .
diff --git a/src/Verify.Tests/Naming/NameForParameterTests.cs b/src/Verify.Tests/Naming/NameForParameterTests.cs
index 2e016b17fd..2c782dd8a8 100644
--- a/src/Verify.Tests/Naming/NameForParameterTests.cs
+++ b/src/Verify.Tests/Naming/NameForParameterTests.cs
@@ -16,7 +16,7 @@ public Task StringInvalidPathChar() =>
public Task Int() =>
Verify(VerifierSettings.GetNameForParameter(10));
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
[Fact]
public Task Half() =>
Verify(VerifierSettings.GetNameForParameter((Half) 10));
diff --git a/src/Verify.Tests/Serialization/SerializationTests.cs b/src/Verify.Tests/Serialization/SerializationTests.cs
index 13d0bcaef6..fd27057fae 100644
--- a/src/Verify.Tests/Serialization/SerializationTests.cs
+++ b/src/Verify.Tests/Serialization/SerializationTests.cs
@@ -58,7 +58,7 @@ public Task WithExtraDateTimeFormat() =>
#endregion
-#if NET5_0_OR_GREATER || net48
+#if NET6_0_OR_GREATER || net48
[Fact]
public Task ValueTasks()
{
@@ -1425,7 +1425,7 @@ public Task ScrubInlineDateTimesWrappedInSymbols()
.ScrubInlineDateTimes("f");
}
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
[Fact]
public async Task ScrubInlineDateTimesInValidFormat()
@@ -1893,7 +1893,7 @@ public Task ScrubUserProfile()
return Verify(target);
}
-#if !NET5_0_OR_GREATER
+#if !NET6_0_OR_GREATER
[Fact]
public Task ScrubCodeBaseLocation()
{
diff --git a/src/Verify.Tests/SimpleTypeTests.cs b/src/Verify.Tests/SimpleTypeTests.cs
index 9ecb9d612d..de1f4996c2 100644
--- a/src/Verify.Tests/SimpleTypeTests.cs
+++ b/src/Verify.Tests/SimpleTypeTests.cs
@@ -1,6 +1,6 @@
public class SimpleTypeTests
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
[Theory]
[MemberData(nameof(GetData))]
public Task Run(object arg)
@@ -39,7 +39,7 @@ public Task Null() =>
public Task NullWrappedInTask() =>
Verify(Task.FromResult(null!));
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
[Fact]
public Task DateTimeWrappedInTask() =>
Verify(Task.FromResult(new DateTime(2000, 1, 1, 1, 1, 1, DateTimeKind.Utc)));
diff --git a/src/Verify.Tests/Tests.OnCallbacksTest.verified.txt b/src/Verify.Tests/Tests.OnCallbacksTest.verified.txt
new file mode 100644
index 0000000000..3c877c57a0
--- /dev/null
+++ b/src/Verify.Tests/Tests.OnCallbacksTest.verified.txt
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/src/Verify.Tests/Tests.cs b/src/Verify.Tests/Tests.cs
index e06e9eff9a..d073d66048 100644
--- a/src/Verify.Tests/Tests.cs
+++ b/src/Verify.Tests/Tests.cs
@@ -119,6 +119,21 @@ public async Task OnVerifyMismatch()
Assert.True(onVerifyMismatchCalled2);
}
+ [Fact]
+ public async Task OnCallbacksTest()
+ {
+ var onVerifyBeforeCalled = false;
+ var onVerifyAfterCalled = false;
+ var settings = new VerifySettings();
+ settings.OnVerify(
+ before: () => onVerifyBeforeCalled = true,
+ after: () => onVerifyAfterCalled = true);
+
+ await Verify("value", settings);
+ Assert.True(onVerifyBeforeCalled);
+ Assert.True(onVerifyAfterCalled);
+ }
+
#region OnInstanceHandlers
[Fact]
diff --git a/src/Verify/Naming/Namer.cs b/src/Verify/Naming/Namer.cs
index 7415cf2c84..ef8c635cf0 100644
--- a/src/Verify/Naming/Namer.cs
+++ b/src/Verify/Naming/Namer.cs
@@ -171,7 +171,7 @@ static string GetOSPlatform()
return "OSX";
}
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
if (OperatingSystem.IsAndroid())
{
diff --git a/src/Verify/Naming/UniquenessList.cs b/src/Verify/Naming/UniquenessList.cs
index 734e5ac8ea..7d975da8e5 100644
--- a/src/Verify/Naming/UniquenessList.cs
+++ b/src/Verify/Naming/UniquenessList.cs
@@ -23,7 +23,7 @@ public override string ToString()
return string.Empty;
}
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
return '.' + string.Join('.', inner);
#else
return '.' + string.Join(".", inner);
diff --git a/src/Verify/Naming/VerifierSettings.cs b/src/Verify/Naming/VerifierSettings.cs
index 1ed28b1f1e..22c02d24ee 100644
--- a/src/Verify/Naming/VerifierSettings.cs
+++ b/src/Verify/Naming/VerifierSettings.cs
@@ -30,7 +30,7 @@ public static partial class VerifierSettings
{
typeof(decimal), _ => ((decimal) _).ToString(Culture.InvariantCulture)
},
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
{
typeof(Half), _ => ((Half) _).ToString(Culture.InvariantCulture)
},
diff --git a/src/Verify/Serialization/Scrubbers/ApplyScrubbers.cs b/src/Verify/Serialization/Scrubbers/ApplyScrubbers.cs
index 839563737a..04bfdfc8a3 100644
--- a/src/Verify/Serialization/Scrubbers/ApplyScrubbers.cs
+++ b/src/Verify/Serialization/Scrubbers/ApplyScrubbers.cs
@@ -23,7 +23,7 @@ public static void UseAssembly(string? solutionDir, string projectDir)
replacements[currentDir] = "{CurrentDirectory}";
replacements[altCurrentDir + IoHelpers.AltDirectorySeparator] = "{CurrentDirectory}";
replacements[altCurrentDir] = "{CurrentDirectory}";
-#if !NET5_0_OR_GREATER
+#if !NET6_0_OR_GREATER
if (CodeBaseLocation.CurrentDirectory is not null)
{
var codeBaseLocation = CleanPath(CodeBaseLocation.CurrentDirectory);
diff --git a/src/Verify/Serialization/Scrubbers/CodeBaseLocation.cs b/src/Verify/Serialization/Scrubbers/CodeBaseLocation.cs
index a5c6ca3ce0..40d0c279a2 100644
--- a/src/Verify/Serialization/Scrubbers/CodeBaseLocation.cs
+++ b/src/Verify/Serialization/Scrubbers/CodeBaseLocation.cs
@@ -1,6 +1,6 @@
// ReSharper disable ConditionIsAlwaysTrueOrFalse
-#if !NET5_0_OR_GREATER
+#if !NET6_0_OR_GREATER
static class CodeBaseLocation
{
static CodeBaseLocation()
diff --git a/src/Verify/Serialization/Scrubbers/VerifierSettings_GlobalScrubbers.cs b/src/Verify/Serialization/Scrubbers/VerifierSettings_GlobalScrubbers.cs
index 010d386c46..3821318341 100644
--- a/src/Verify/Serialization/Scrubbers/VerifierSettings_GlobalScrubbers.cs
+++ b/src/Verify/Serialization/Scrubbers/VerifierSettings_GlobalScrubbers.cs
@@ -96,7 +96,7 @@ public static void ScrubInlineDateTimeOffsets(
DateScrubber.BuildDateTimeOffsetScrubber(format, culture),
location);
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Replace inline s with a placeholder.
diff --git a/src/Verify/Serialization/Scrubbers/VerifySettings_InstanceScrubbers.cs b/src/Verify/Serialization/Scrubbers/VerifySettings_InstanceScrubbers.cs
index 9b664f5ae8..d7a4d88c71 100644
--- a/src/Verify/Serialization/Scrubbers/VerifySettings_InstanceScrubbers.cs
+++ b/src/Verify/Serialization/Scrubbers/VerifySettings_InstanceScrubbers.cs
@@ -78,7 +78,7 @@ public void ScrubInlineDateTimeOffsets(
DateScrubber.BuildDateTimeOffsetScrubber(format, culture),
location);
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Replace inline s with a placeholder.
diff --git a/src/Verify/Serialization/VerifierSettings.cs b/src/Verify/Serialization/VerifierSettings.cs
index f0ec66890c..d2a0b95bc4 100644
--- a/src/Verify/Serialization/VerifierSettings.cs
+++ b/src/Verify/Serialization/VerifierSettings.cs
@@ -70,7 +70,7 @@ public static bool TryGetToString(
{
typeof(BigInteger), (target, _) => ((BigInteger) target).ToString(Culture.InvariantCulture)
},
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
{
typeof(Half), (target, _) => ((Half) target).ToString(Culture.InvariantCulture)
},
diff --git a/src/Verify/SettingsTask_Scrubbing.cs b/src/Verify/SettingsTask_Scrubbing.cs
index 0826f0be82..a3f69d53ad 100644
--- a/src/Verify/SettingsTask_Scrubbing.cs
+++ b/src/Verify/SettingsTask_Scrubbing.cs
@@ -72,7 +72,7 @@ public SettingsTask ScrubInlineDateTimeOffsets(string format, Culture? culture =
return this;
}
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
///
/// Replace inline s with a placeholder.
diff --git a/src/Verify/Verifier/InnerVerifier_Directory.cs b/src/Verify/Verifier/InnerVerifier_Directory.cs
index 09c2e47efd..d951ece240 100644
--- a/src/Verify/Verifier/InnerVerifier_Directory.cs
+++ b/src/Verify/Verifier/InnerVerifier_Directory.cs
@@ -2,7 +2,7 @@
partial class InnerVerifier
{
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
public async Task VerifyDirectory(
string path,
diff --git a/src/Verify/Verifier/InnerVerifier_Xml.cs b/src/Verify/Verifier/InnerVerifier_Xml.cs
index dd300f183d..f3db120f2b 100644
--- a/src/Verify/Verifier/InnerVerifier_Xml.cs
+++ b/src/Verify/Verifier/InnerVerifier_Xml.cs
@@ -34,7 +34,7 @@ public async Task VerifyXml(Stream? target)
return await VerifyInner(target, null, emptyTargets, true);
}
-#if NET5_0_OR_GREATER
+#if NET6_0_OR_GREATER
var document = await XDocument.LoadAsync(target, LoadOptions.None, default);
#else
var document = XDocument.Load(target, LoadOptions.None);
diff --git a/src/Verify/VerifySettings.cs b/src/Verify/VerifySettings.cs
index f0205f1370..91c2fc96ea 100644
--- a/src/Verify/VerifySettings.cs
+++ b/src/Verify/VerifySettings.cs
@@ -42,7 +42,12 @@ public VerifySettings(VerifySettings? settings)
hashParameters = settings.hashParameters;
parametersText = settings.parametersText;
fileName = settings.fileName;
+ handleOnFirstVerify = settings.handleOnFirstVerify;
+ handleOnVerifyDelete = settings.handleOnVerifyDelete;
+ handleOnVerifyMismatch = settings.handleOnVerifyMismatch;
UniquePrefixDisabled = settings.UniquePrefixDisabled;
+ beforeVerify = settings.beforeVerify;
+ afterVerify = settings.afterVerify;
UseUniqueDirectorySplitMode = settings.UseUniqueDirectorySplitMode;
Namer = new(settings.Namer);
#if NET6_0_OR_GREATER
diff --git a/src/appveyor.yml b/src/appveyor.yml
index a8fd27856a..22d13aff1a 100644
--- a/src/appveyor.yml
+++ b/src/appveyor.yml
@@ -41,9 +41,8 @@ build_script:
dotnet test src/Verify.Tests --configuration Release --no-build --no-restore --verbosity quiet
dotnet test src/Verify.Xunit.DerivePaths.Tests --configuration Release --no-build --no-restore --verbosity quiet
dotnet test src/Verify.Xunit.Tests --configuration Release --no-build --no-restore --verbosity quiet
- #TODO: re enable when updating XunitV3
- #dotnet test src/Verify.XunitV3.Tests --configuration Release --no-build --no-restore --verbosity quiet
- #dotnet test src/Verify.XunitV3.DerivePaths.Tests --configuration Release --no-build --no-restore --verbosity quiet
+ dotnet test src/Verify.XunitV3.Tests --configuration Release --no-build --no-restore --verbosity quiet
+ dotnet test src/Verify.XunitV3.DerivePaths.Tests --configuration Release --no-build --no-restore --verbosity quiet
dotnet test src/Verify.TUnit.DerivePaths.Tests --configuration Release --no-build --no-restore --verbosity quiet
dotnet test src/Verify.TUnit.Tests --configuration Release --no-build --no-restore --verbosity quiet
if ($isWindows) {
diff --git a/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj b/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj
index 49ccf3d7d3..09440f2166 100644
--- a/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj
+++ b/usages/ExpectoNugetUsage/ExpectoNugetUsage.fsproj
@@ -9,7 +9,7 @@
-
+
\ No newline at end of file
diff --git a/usages/FixieNugetUsage/FixieNugetUsage.csproj b/usages/FixieNugetUsage/FixieNugetUsage.csproj
index 1c5f1c8d7e..ea8cdabb6c 100644
--- a/usages/FixieNugetUsage/FixieNugetUsage.csproj
+++ b/usages/FixieNugetUsage/FixieNugetUsage.csproj
@@ -6,7 +6,7 @@
-
+
\ No newline at end of file
diff --git a/usages/MSTestNugetUsage/MSTestNugetUsage.csproj b/usages/MSTestNugetUsage/MSTestNugetUsage.csproj
index 4c6a07c1fa..7125806e8d 100644
--- a/usages/MSTestNugetUsage/MSTestNugetUsage.csproj
+++ b/usages/MSTestNugetUsage/MSTestNugetUsage.csproj
@@ -7,7 +7,7 @@
-
+
\ No newline at end of file
diff --git a/usages/NUnitNugetUsage/NUnitNugetUsage.csproj b/usages/NUnitNugetUsage/NUnitNugetUsage.csproj
index aa594eb970..1e2892ac66 100644
--- a/usages/NUnitNugetUsage/NUnitNugetUsage.csproj
+++ b/usages/NUnitNugetUsage/NUnitNugetUsage.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/usages/TUnitNugetUsage/TUnitNugetUsage.csproj b/usages/TUnitNugetUsage/TUnitNugetUsage.csproj
index 960b5dfff1..42c9407e9b 100644
--- a/usages/TUnitNugetUsage/TUnitNugetUsage.csproj
+++ b/usages/TUnitNugetUsage/TUnitNugetUsage.csproj
@@ -6,8 +6,8 @@
-
-
+
+
\ No newline at end of file
diff --git a/usages/XunitNugetUsage/XunitNugetUsage.csproj b/usages/XunitNugetUsage/XunitNugetUsage.csproj
index 7d2b93d93c..0fd33122ec 100644
--- a/usages/XunitNugetUsage/XunitNugetUsage.csproj
+++ b/usages/XunitNugetUsage/XunitNugetUsage.csproj
@@ -6,9 +6,9 @@
-
+
-
+
\ No newline at end of file
diff --git a/usages/XunitV3NugetUsage/XunitV3NugetUsage.csproj b/usages/XunitV3NugetUsage/XunitV3NugetUsage.csproj
index f4201c23ee..2426794811 100644
--- a/usages/XunitV3NugetUsage/XunitV3NugetUsage.csproj
+++ b/usages/XunitV3NugetUsage/XunitV3NugetUsage.csproj
@@ -7,9 +7,9 @@
-
-
-
+
+
+
\ No newline at end of file