@@ -15,8 +15,8 @@ public void HelpText_with_AdditionalNewLineAfterOption_true_should_have_newline(
15
15
// Fixture setup
16
16
// Exercize system
17
17
var sut = new HelpText { AdditionalNewLineAfterOption = true }
18
- . AddOptions ( new NotParsed < Simple_Options > ( TypeInfo . Create ( typeof ( Simple_Options ) ) ,
19
- Enumerable . Empty < Error > ( ) ) ) ;
18
+ . AddOptions ( new NotParsed < Simple_Options > ( Enumerable . Empty < Error > ( ) ,
19
+ TypeInfo . Create ( typeof ( Simple_Options ) ) ) ) ;
20
20
21
21
// Verify outcome
22
22
@@ -40,8 +40,8 @@ public void HelpText_with_AdditionalNewLineAfterOption_false_should_not_have_new
40
40
// Fixture setup
41
41
// Exercize system
42
42
var sut = new HelpText { AdditionalNewLineAfterOption = false }
43
- . AddOptions ( new NotParsed < Simple_Options > ( TypeInfo . Create ( typeof ( Simple_Options ) ) ,
44
- Enumerable . Empty < Error > ( ) ) ) ;
43
+ . AddOptions ( new NotParsed < Simple_Options > ( Enumerable . Empty < Error > ( ) ,
44
+ TypeInfo . Create ( typeof ( Simple_Options ) ) ) ) ;
45
45
46
46
// Verify outcome
47
47
@@ -59,8 +59,8 @@ public void HelpText_with_by_default_should_include_help_version_option()
59
59
// Fixture setup
60
60
// Exercize system
61
61
var sut = new HelpText ( )
62
- . AddOptions ( new NotParsed < Simple_Options > ( TypeInfo . Create ( typeof ( Simple_Options ) ) ,
63
- Enumerable . Empty < Error > ( ) ) ) ;
62
+ . AddOptions ( new NotParsed < Simple_Options > ( Enumerable . Empty < Error > ( ) ,
63
+ TypeInfo . Create ( typeof ( Simple_Options ) ) ) ) ;
64
64
65
65
// Verify outcome
66
66
@@ -77,8 +77,8 @@ public void HelpText_with_AutoHelp_false_should_hide_help_option()
77
77
// Fixture setup
78
78
// Exercize system
79
79
var sut = new HelpText { AutoHelp = false , AutoVersion = false }
80
- . AddOptions ( new NotParsed < Simple_Options > ( TypeInfo . Create ( typeof ( Simple_Options ) ) ,
81
- Enumerable . Empty < Error > ( ) ) ) ;
80
+ . AddOptions ( new NotParsed < Simple_Options > ( Enumerable . Empty < Error > ( ) ,
81
+ TypeInfo . Create ( typeof ( Simple_Options ) ) ) ) ;
82
82
83
83
// Verify outcome
84
84
0 commit comments