@@ -5,6 +5,7 @@ public partial class Tests
55 [ TestMethod ]
66 public Task Test ( )
77 {
8+ VerifierSettings . Reset ( ) ;
89 DerivePathInfo (
910 ( sourceFile , projectDirectory , methodName , typeName ) =>
1011 {
@@ -26,27 +27,31 @@ public Task Test()
2627 [ TestMethod ]
2728 public Task ReturnNulls ( )
2829 {
30+ VerifierSettings . Reset ( ) ;
2931 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null ) ) ;
3032 return Verify ( "Value" ) ;
3133 }
3234
3335 [ TestMethod ]
3436 public Task ProjectRelativeDirectory ( )
3537 {
38+ VerifierSettings . Reset ( ) ;
3639 UseProjectRelativeDirectory ( "Relative" ) ;
3740 return Verify ( "Value" ) ;
3841 }
3942
4043 [ TestMethod ]
4144 public Task SourceFileRelativeDirectory ( )
4245 {
46+ VerifierSettings . Reset ( ) ;
4347 UseSourceFileRelativeDirectory ( "Relative" ) ;
4448 return Verify ( "Value" ) ;
4549 }
4650
4751 [ TestMethod ]
4852 public Task InvalidMethod ( )
4953 {
54+ VerifierSettings . Reset ( ) ;
5055 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null , null , Path
5156 . GetInvalidFileNameChars ( )
5257 . First ( )
@@ -57,6 +62,7 @@ public Task InvalidMethod()
5762 [ TestMethod ]
5863 public Task InvalidType ( )
5964 {
65+ VerifierSettings . Reset ( ) ;
6066 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( null , Path
6167 . GetInvalidFileNameChars ( )
6268 . First ( )
@@ -67,6 +73,7 @@ public Task InvalidType()
6773 [ TestMethod ]
6874 public Task InvalidDirectory ( )
6975 {
76+ VerifierSettings . Reset ( ) ;
7077 DerivePathInfo ( ( _ , _ , _ , _ ) => new ( Path
7178 . GetInvalidPathChars ( )
7279 . First ( )
0 commit comments