diff --git a/src/Verify.Expecto/Verifier_Directory.cs b/src/Verify.Expecto/Verifier_Directory.cs index a30ea7826..8fbd31f81 100644 --- a/src/Verify.Expecto/Verifier_Directory.cs +++ b/src/Verify.Expecto/Verifier_Directory.cs @@ -7,7 +7,7 @@ public static partial class Verifier #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static Task VerifyDirectory( string name, @@ -25,7 +25,7 @@ public static Task VerifyDirectory( } /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object target) which will verify the full path. /// public static Task VerifyDirectory( @@ -43,7 +43,7 @@ public static Task VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static Task VerifyDirectory( string name, @@ -61,7 +61,7 @@ public static Task VerifyDirectory( } /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object target) which will verify the full path. /// public static Task VerifyDirectory( diff --git a/src/Verify.Expecto/Verifier_File.cs b/src/Verify.Expecto/Verifier_File.cs index 78e88f02e..3729e6658 100644 --- a/src/Verify.Expecto/Verifier_File.cs +++ b/src/Verify.Expecto/Verifier_File.cs @@ -5,7 +5,7 @@ namespace VerifyExpecto; public static partial class Verifier { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static Task VerifyFile( string name, @@ -19,7 +19,7 @@ public static Task VerifyFile( } /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static Task VerifyFile( diff --git a/src/Verify.MSTest/VerifyBase_Directory.cs b/src/Verify.MSTest/VerifyBase_Directory.cs index 3ccdfe2a5..7583ec607 100644 --- a/src/Verify.MSTest/VerifyBase_Directory.cs +++ b/src/Verify.MSTest/VerifyBase_Directory.cs @@ -5,7 +5,7 @@ public partial class VerifyBase #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -19,7 +19,7 @@ public SettingsTask VerifyDirectory( Verify(settings, sourceFile, _ => _.VerifyDirectory(path, include, pattern, options, info, fileScrubber), true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( @@ -35,7 +35,7 @@ public SettingsTask VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -49,7 +49,7 @@ public SettingsTask VerifyDirectory( Verify(settings, sourceFile, _ => _.VerifyDirectory(path, include, pattern, option, info, fileScrubber), true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( diff --git a/src/Verify.MSTest/VerifyBase_File.cs b/src/Verify.MSTest/VerifyBase_File.cs index 407642bb4..63da5773d 100644 --- a/src/Verify.MSTest/VerifyBase_File.cs +++ b/src/Verify.MSTest/VerifyBase_File.cs @@ -3,7 +3,7 @@ public partial class VerifyBase { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyFile( string path, @@ -13,7 +13,7 @@ public SettingsTask VerifyFile( Verify(settings, sourceFile, _ => _.VerifyFile(path, info)); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyFile( diff --git a/src/Verify.NUnit/Verifier_Directory.cs b/src/Verify.NUnit/Verifier_Directory.cs index b43583655..1873a0112 100644 --- a/src/Verify.NUnit/Verifier_Directory.cs +++ b/src/Verify.NUnit/Verifier_Directory.cs @@ -5,7 +5,7 @@ public static partial class Verifier #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyDirectory( string path, @@ -19,7 +19,7 @@ public static SettingsTask VerifyDirectory( Verify(settings, sourceFile, _ => _.VerifyDirectory(path, include, pattern, options, info, fileScrubber), true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyDirectory( @@ -36,7 +36,7 @@ public static SettingsTask VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyDirectory( string path, @@ -54,7 +54,7 @@ public static SettingsTask VerifyDirectory( true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyDirectory( diff --git a/src/Verify.NUnit/Verifier_File.cs b/src/Verify.NUnit/Verifier_File.cs index 2183d0c4c..67d61837f 100644 --- a/src/Verify.NUnit/Verifier_File.cs +++ b/src/Verify.NUnit/Verifier_File.cs @@ -3,7 +3,7 @@ public static partial class Verifier { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyFile( string path, @@ -13,7 +13,7 @@ public static SettingsTask VerifyFile( Verify(settings, sourceFile, _ => _.VerifyFile(path, info)); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyFile( diff --git a/src/Verify.NUnit/VerifyBase_Directory.cs b/src/Verify.NUnit/VerifyBase_Directory.cs index efe94caf4..d96c4907d 100644 --- a/src/Verify.NUnit/VerifyBase_Directory.cs +++ b/src/Verify.NUnit/VerifyBase_Directory.cs @@ -5,7 +5,7 @@ public partial class VerifyBase #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -26,7 +26,7 @@ public SettingsTask VerifyDirectory( sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( @@ -50,7 +50,7 @@ public SettingsTask VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -71,7 +71,7 @@ public SettingsTask VerifyDirectory( sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( diff --git a/src/Verify.NUnit/VerifyBase_File.cs b/src/Verify.NUnit/VerifyBase_File.cs index 175167adf..ebce37f39 100644 --- a/src/Verify.NUnit/VerifyBase_File.cs +++ b/src/Verify.NUnit/VerifyBase_File.cs @@ -3,7 +3,7 @@ public partial class VerifyBase { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyFile( string path, @@ -12,7 +12,7 @@ public SettingsTask VerifyFile( Verifier.VerifyFile(path, settings ?? this.settings, info, sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyFile( diff --git a/src/Verify.Xunit/Verifier_Directory.cs b/src/Verify.Xunit/Verifier_Directory.cs index b9aeec9d6..ded89a695 100644 --- a/src/Verify.Xunit/Verifier_Directory.cs +++ b/src/Verify.Xunit/Verifier_Directory.cs @@ -5,7 +5,7 @@ public static partial class Verifier #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyDirectory( string path, @@ -19,7 +19,7 @@ public static SettingsTask VerifyDirectory( Verify(settings, sourceFile, _ => _.VerifyDirectory(path, include, pattern, options, info, fileScrubber), true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyDirectory( @@ -36,7 +36,7 @@ public static SettingsTask VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyDirectory( string path, @@ -54,7 +54,7 @@ public static SettingsTask VerifyDirectory( true); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyDirectory( diff --git a/src/Verify.Xunit/Verifier_File.cs b/src/Verify.Xunit/Verifier_File.cs index 140dcf90b..42b406ee0 100644 --- a/src/Verify.Xunit/Verifier_File.cs +++ b/src/Verify.Xunit/Verifier_File.cs @@ -3,7 +3,7 @@ public static partial class Verifier { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public static SettingsTask VerifyFile( string path, @@ -13,7 +13,7 @@ public static SettingsTask VerifyFile( Verify(settings, sourceFile, _ => _.VerifyFile(path, info)); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public static SettingsTask VerifyFile( diff --git a/src/Verify.Xunit/VerifyBase_Directory.cs b/src/Verify.Xunit/VerifyBase_Directory.cs index e8dcdd74e..0382d19ce 100644 --- a/src/Verify.Xunit/VerifyBase_Directory.cs +++ b/src/Verify.Xunit/VerifyBase_Directory.cs @@ -5,7 +5,7 @@ public partial class VerifyBase #if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -26,7 +26,7 @@ public SettingsTask VerifyDirectory( sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( @@ -50,7 +50,7 @@ public SettingsTask VerifyDirectory( #else /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyDirectory( string path, @@ -71,7 +71,7 @@ public SettingsTask VerifyDirectory( sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyDirectory( diff --git a/src/Verify.Xunit/VerifyBase_File.cs b/src/Verify.Xunit/VerifyBase_File.cs index 9d0d5f1e9..7a1f1f0a6 100644 --- a/src/Verify.Xunit/VerifyBase_File.cs +++ b/src/Verify.Xunit/VerifyBase_File.cs @@ -3,7 +3,7 @@ public partial class VerifyBase { /// - /// Verifies the contents of . + /// Verifies the contents of . /// public SettingsTask VerifyFile( string path, @@ -12,7 +12,7 @@ public SettingsTask VerifyFile( Verifier.VerifyFile(path, settings ?? this.settings, info, sourceFile); /// - /// Verifies the contents of . + /// Verifies the contents of . /// Differs from passing to Verify(object? target) which will verify the full path. /// public SettingsTask VerifyFile(