33 [ Fact ]
44 public Task Test ( )
55 {
6+ VerifierSettings . Reset ( ) ;
67 DerivePathInfo (
78 ( sourceFile , projectDirectory , methodName , typeName ) =>
89 {
@@ -20,27 +21,31 @@ public Task Test()
2021 [ Fact ]
2122 public Task ReturnNulls ( )
2223 {
24+ VerifierSettings . Reset ( ) ;
2325 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null ) ) ;
2426 return Verify ( "Value" ) ;
2527 }
2628
2729 [ Fact ]
2830 public Task ProjectRelativeDirectory ( )
2931 {
32+ VerifierSettings . Reset ( ) ;
3033 UseProjectRelativeDirectory ( "Relative" ) ;
3134 return Verify ( "Value" ) ;
3235 }
3336
3437 [ Fact ]
3538 public Task SourceFileRelativeDirectory ( )
3639 {
40+ VerifierSettings . Reset ( ) ;
3741 UseSourceFileRelativeDirectory ( "Relative" ) ;
3842 return Verify ( "Value" ) ;
3943 }
4044
4145 [ Fact ]
4246 public Task InvalidMethod ( )
4347 {
48+ VerifierSettings . Reset ( ) ;
4449 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null , null , Path
4550 . GetInvalidFileNameChars ( )
4651 . First ( )
@@ -51,6 +56,7 @@ public Task InvalidMethod()
5156 [ Fact ]
5257 public Task InvalidType ( )
5358 {
59+ VerifierSettings . Reset ( ) ;
5460 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null , Path
5561 . GetInvalidFileNameChars ( )
5662 . First ( )
@@ -61,6 +67,7 @@ public Task InvalidType()
6167 [ Fact ]
6268 public Task InvalidDirectory ( )
6369 {
70+ VerifierSettings . Reset ( ) ;
6471 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( Path
6572 . GetInvalidPathChars ( )
6673 . First ( )
0 commit comments