@@ -37,8 +37,8 @@ public void Setup()
37
37
[ TestCase ( "cs" ) ]
38
38
[ TestCase ( "fs" ) ]
39
39
[ TestCase ( "vb" ) ]
40
- [ Category ( " NoMono" ) ]
41
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
40
+ [ Category ( NoMono ) ]
41
+ [ Description ( NoMonoDescription ) ]
42
42
public void ShouldCreateAssemblyInfoFileWhenNotExistsAndEnsureAssemblyInfo ( string fileExtension )
43
43
{
44
44
var workingDir = Path . GetTempPath ( ) ;
@@ -55,8 +55,8 @@ public void ShouldCreateAssemblyInfoFileWhenNotExistsAndEnsureAssemblyInfo(strin
55
55
[ TestCase ( "cs" ) ]
56
56
[ TestCase ( "fs" ) ]
57
57
[ TestCase ( "vb" ) ]
58
- [ Category ( " NoMono" ) ]
59
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
58
+ [ Category ( NoMono ) ]
59
+ [ Description ( NoMonoDescription ) ]
60
60
public void ShouldCreateAssemblyInfoFileAtPathWhenNotExistsAndEnsureAssemblyInfo ( string fileExtension )
61
61
{
62
62
var workingDir = Path . GetTempPath ( ) ;
@@ -73,8 +73,8 @@ public void ShouldCreateAssemblyInfoFileAtPathWhenNotExistsAndEnsureAssemblyInfo
73
73
[ TestCase ( "cs" ) ]
74
74
[ TestCase ( "fs" ) ]
75
75
[ TestCase ( "vb" ) ]
76
- [ Category ( " NoMono" ) ]
77
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
76
+ [ Category ( NoMono ) ]
77
+ [ Description ( NoMonoDescription ) ]
78
78
public void ShouldCreateAssemblyInfoFilesAtPathWhenNotExistsAndEnsureAssemblyInfo ( string fileExtension )
79
79
{
80
80
var workingDir = Path . GetTempPath ( ) ;
@@ -164,8 +164,8 @@ public void ShouldReplaceAssemblyVersion(string fileExtension, string assemblyFi
164
164
[ TestCase ( "cs" , "[assembly: AssemblyFileVersion(\" 1.0.0.0\" )]" ) ]
165
165
[ TestCase ( "fs" , "[<assembly: AssemblyFileVersion(\" 1.0.0.0\" )>]" ) ]
166
166
[ TestCase ( "vb" , "<Assembly: AssemblyFileVersion(\" 1.0.0.0\" )>" ) ]
167
- [ Category ( " NoMono" ) ]
168
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
167
+ [ Category ( NoMono ) ]
168
+ [ Description ( NoMonoDescription ) ]
169
169
public void ShouldNotReplaceAssemblyVersionWhenVersionSchemeIsNone ( string fileExtension , string assemblyFileContent )
170
170
{
171
171
var workingDir = Path . GetTempPath ( ) ;
@@ -377,8 +377,8 @@ public void ShouldReplaceAssemblyVersionInRelativePathWithVariablesAndWhiteSpace
377
377
[ TestCase ( "cs" , "[assembly: AssemblyVersion(\" 1.0.0.0\" )]\r \n [assembly: AssemblyFileVersion(\" 1.0.0.0\" )]" ) ]
378
378
[ TestCase ( "fs" , "[<assembly: AssemblyVersion(\" 1.0.0.0\" )>]\r \n [<assembly: AssemblyFileVersion(\" 1.0.0.0\" )>]" ) ]
379
379
[ TestCase ( "vb" , "<Assembly: AssemblyVersion(\" 1.0.0.0\" )>\r \n <Assembly: AssemblyFileVersion(\" 1.0.0.0\" )>" ) ]
380
- [ Category ( " NoMono" ) ]
381
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
380
+ [ Category ( NoMono ) ]
381
+ [ Description ( NoMonoDescription ) ]
382
382
public void ShouldAddAssemblyInformationalVersionWhenUpdatingAssemblyVersionFile ( string fileExtension , string assemblyFileContent )
383
383
{
384
384
var workingDir = Path . GetTempPath ( ) ;
@@ -398,8 +398,8 @@ public void ShouldAddAssemblyInformationalVersionWhenUpdatingAssemblyVersionFile
398
398
[ TestCase ( "cs" , "[assembly: AssemblyVersion(\" 1.0.0.0\" )]\r \n [assembly: AssemblyFileVersion(\" 1.0.0.0\" )]\r \n // comment\r \n " ) ]
399
399
[ TestCase ( "fs" , "[<assembly: AssemblyVersion(\" 1.0.0.0\" )>]\r \n [<assembly: AssemblyFileVersion(\" 1.0.0.0\" )>]\r \n do\r \n ()\r \n " ) ]
400
400
[ TestCase ( "vb" , "<Assembly: AssemblyVersion(\" 1.0.0.0\" )>\r \n <Assembly: AssemblyFileVersion(\" 1.0.0.0\" )>\r \n ' comment\r \n " ) ]
401
- [ Category ( " NoMono" ) ]
402
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
401
+ [ Category ( NoMono ) ]
402
+ [ Description ( NoMonoDescription ) ]
403
403
public void Issue1183ShouldAddFSharpAssemblyInformationalVersionBesideOtherAttributes ( string fileExtension , string assemblyFileContent )
404
404
{
405
405
var workingDir = Path . GetTempPath ( ) ;
@@ -419,8 +419,8 @@ public void Issue1183ShouldAddFSharpAssemblyInformationalVersionBesideOtherAttri
419
419
[ TestCase ( "cs" , "[assembly: AssemblyFileVersion(\" 1.0.0.0\" )]" ) ]
420
420
[ TestCase ( "fs" , "[<assembly: AssemblyFileVersion(\" 1.0.0.0\" )>]" ) ]
421
421
[ TestCase ( "vb" , "<Assembly: AssemblyFileVersion(\" 1.0.0.0\" )>" ) ]
422
- [ Category ( " NoMono" ) ]
423
- [ Description ( "Won't run on Mono due to source information not being available for ShouldMatchApproved." ) ]
422
+ [ Category ( NoMono ) ]
423
+ [ Description ( NoMonoDescription ) ]
424
424
public void ShouldNotAddAssemblyInformationalVersionWhenUpdatingAssemblyVersionFileWhenVersionSchemeIsNone ( string fileExtension , string assemblyFileContent )
425
425
{
426
426
var workingDir = Path . GetTempPath ( ) ;
0 commit comments