@@ -128,7 +128,7 @@ public void Explicit_version_command_with_valid_args_and_short_option_produces_j
128
128
var help = new StringWriter ( ) ;
129
129
var sut = new Parser ( config => {
130
130
config . AutoVersion = true ;
131
- // config.AutoVersionShortName = true; // Not implemented yet
131
+ config . AutoVersionShortName = true ;
132
132
config . HelpWriter = help ;
133
133
} ) ;
134
134
@@ -172,7 +172,7 @@ public void Explicit_version_command_with_invalid_args_and_short_option_produces
172
172
var help = new StringWriter ( ) ;
173
173
var sut = new Parser ( config => {
174
174
config . AutoVersion = true ;
175
- // config.AutoVersionShortName = true; // Not implemented yet
175
+ config . AutoVersionShortName = true ;
176
176
config . HelpWriter = help ;
177
177
} ) ;
178
178
@@ -221,7 +221,7 @@ public void Dash_dash_help_in_a_string_value_with_short_option_does_not_produce_
221
221
var help = new StringWriter ( ) ;
222
222
var sut = new Parser ( config => {
223
223
config . AutoVersion = true ;
224
- // config.AutoVersionShortName = true; // Not implemented yet
224
+ config . AutoVersionShortName = true ;
225
225
config . HelpWriter = help ;
226
226
} ) ;
227
227
@@ -250,7 +250,7 @@ public void Dash_dash_help_in_a_string_value_with_short_option_in_data_does_not_
250
250
var help = new StringWriter ( ) ;
251
251
var sut = new Parser ( config => {
252
252
config . AutoVersion = true ;
253
- // config.AutoVersionShortName = true; // Not implemented yet
253
+ config . AutoVersionShortName = true ;
254
254
config . HelpWriter = help ;
255
255
} ) ;
256
256
@@ -299,7 +299,7 @@ public void Explicit_short_version_command_mixed_with_some_consumed_args_produce
299
299
var help = new StringWriter ( ) ;
300
300
var sut = new Parser ( config => {
301
301
config . AutoVersion = true ;
302
- // config.AutoVersionShortName = true; // Not implemented yet
302
+ config . AutoVersionShortName = true ;
303
303
config . HelpWriter = help ;
304
304
} ) ;
305
305
@@ -343,7 +343,7 @@ public void Dash_h_consumed_by_valid_args_with_invalid_args_produces_no_VersionR
343
343
var help = new StringWriter ( ) ;
344
344
var sut = new Parser ( config => {
345
345
config . AutoVersion = true ;
346
- // config.AutoVersionShortName = true; // Not implemented yet
346
+ config . AutoVersionShortName = true ;
347
347
config . HelpWriter = help ;
348
348
} ) ;
349
349
0 commit comments