@@ -182,6 +182,78 @@ public void Should_add_short_version_of_skip_hooks_to_the_option_set()
182182 {
183183 _optionSet . Contains ( "skiphooks" ) . Should ( ) . BeTrue ( ) ;
184184 }
185+
186+ [ Fact ]
187+ public void Should_add_short_version_of_userememberedargs_to_the_option_set ( )
188+ {
189+ _optionSet . Contains ( "userememberedargs" ) . Should ( ) . BeTrue ( ) ;
190+ }
191+
192+ [ Fact ]
193+ public void Should_add_short_version_of_userememberedarguments_to_the_option_set ( )
194+ {
195+ _optionSet . Contains ( "userememberedarguments" ) . Should ( ) . BeTrue ( ) ;
196+ }
197+
198+ [ Fact ]
199+ public void Should_add_short_version_of_userememberedoptions_to_the_option_set ( )
200+ {
201+ _optionSet . Contains ( "userememberedoptions" ) . Should ( ) . BeTrue ( ) ;
202+ }
203+
204+ [ Fact ]
205+ public void Should_add_userememberedargs_to_the_option_set ( )
206+ {
207+ _optionSet . Contains ( "use-remembered-args" ) . Should ( ) . BeTrue ( ) ;
208+ }
209+
210+ [ Fact ]
211+ public void Should_add_userememberedarguments_to_the_option_set ( )
212+ {
213+ _optionSet . Contains ( "use-remembered-arguments" ) . Should ( ) . BeTrue ( ) ;
214+ }
215+
216+ [ Fact ]
217+ public void Should_add_userememberedoptions_to_the_option_set ( )
218+ {
219+ _optionSet . Contains ( "use-remembered-options" ) . Should ( ) . BeTrue ( ) ;
220+ }
221+
222+ [ Fact ]
223+ public void Should_add_short_version_of_ignorerememberedargs_to_the_option_set ( )
224+ {
225+ _optionSet . Contains ( "ignorerememberedargs" ) . Should ( ) . BeTrue ( ) ;
226+ }
227+
228+ [ Fact ]
229+ public void Should_add_short_version_of_ignorerememberedarguments_to_the_option_set ( )
230+ {
231+ _optionSet . Contains ( "ignorerememberedarguments" ) . Should ( ) . BeTrue ( ) ;
232+ }
233+
234+ [ Fact ]
235+ public void Should_add_short_version_of_ignorerememberedoptions_to_the_option_set ( )
236+ {
237+ _optionSet . Contains ( "ignorerememberedoptions" ) . Should ( ) . BeTrue ( ) ;
238+ }
239+
240+ [ Fact ]
241+ public void Should_add_ignorerememberedargs_to_the_option_set ( )
242+ {
243+ _optionSet . Contains ( "ignore-remembered-args" ) . Should ( ) . BeTrue ( ) ;
244+ }
245+
246+ [ Fact ]
247+ public void Should_add_ignorerememberedarguments_to_the_option_set ( )
248+ {
249+ _optionSet . Contains ( "ignore-remembered-arguments" ) . Should ( ) . BeTrue ( ) ;
250+ }
251+
252+ [ Fact ]
253+ public void Should_add_ignorerememberedoptions_to_the_option_set ( )
254+ {
255+ _optionSet . Contains ( "ignore-remembered-options" ) . Should ( ) . BeTrue ( ) ;
256+ }
185257 }
186258
187259 public class When_handling_additional_argument_parsing : ChocolateyUninstallCommandSpecsBase
0 commit comments