You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AssertFullErrorMessage(FooOption.self,["--string","Forty Two"],"Error: The value 'Forty Two' is invalid for '--string <int_str>': Could not transform to an Int.\n"+ FooOption.usageString)
74
+
AssertFullErrorMessage(FooOption.self,["--string","Forty Two"],"Error: The value 'Forty Two' is invalid for '--string <int_str>': Could not transform to an Int.\n"+ FooOption.help + FooOption.usageString)
AssertFullErrorMessage(FooOption.self,["--string","4827"],"Error: The value '4827' is invalid for '--string <int_str>': outOfBounds\n"+ FooOption.usageString)
78
+
AssertFullErrorMessage(FooOption.self,["--string","4827"],"Error: The value '4827' is invalid for '--string <int_str>': outOfBounds\n"+ FooOption.help + FooOption.usageString)
AssertFullErrorMessage(BarOption.self,["--strings","Forty Two","--strings","72","--strings","99"],"Error: The value 'Forty Two' is invalid for '--strings <int_str>': Could not transform to an Int.\n"+ BarOption.usageString)
90
+
AssertFullErrorMessage(BarOption.self,["--strings","Forty Two","--strings","72","--strings","99"],"Error: The value 'Forty Two' is invalid for '--strings <int_str>': Could not transform to an Int.\n"+ BarOption.help + BarOption.usageString)
AssertFullErrorMessage(BarOption.self,["--strings","4827","--strings","72","--strings","99"],"Error: The value '4827' is invalid for '--strings <int_str>': outOfBounds\n"+ BarOption.usageString)
94
+
AssertFullErrorMessage(BarOption.self,["--strings","4827","--strings","72","--strings","99"],"Error: The value '4827' is invalid for '--strings <int_str>': outOfBounds\n"+ BarOption.help + BarOption.usageString)
AssertFullErrorMessage(FooArgument.self,["Forty Two"],"Error: The value 'Forty Two' is invalid for '<int_str>': Could not transform to an Int.\n"+ FooArgument.usageString)
141
+
AssertFullErrorMessage(FooArgument.self,["Forty Two"],"Error: The value 'Forty Two' is invalid for '<int_str>': Could not transform to an Int.\n"+ FooArgument.help + FooArgument.usageString)
AssertFullErrorMessage(FooArgument.self,["4827"],"Error: The value '4827' is invalid for '<int_str>': outOfBounds\n"+ FooArgument.usageString)
145
+
AssertFullErrorMessage(FooArgument.self,["4827"],"Error: The value '4827' is invalid for '<int_str>': outOfBounds\n"+ FooArgument.help + FooArgument.usageString)
AssertFullErrorMessage(BarArgument.self,["Forty Two","72","99"],"Error: The value 'Forty Two' is invalid for '<int_str>': Could not transform to an Int.\n"+ BarArgument.usageString)
157
+
AssertFullErrorMessage(BarArgument.self,["Forty Two","72","99"],"Error: The value 'Forty Two' is invalid for '<int_str>': Could not transform to an Int.\n"+ BarArgument.help + BarArgument.usageString)
AssertFullErrorMessage(BarArgument.self,["4827","72","99"],"Error: The value '4827' is invalid for '<int_str>': outOfBounds\n"+ BarArgument.usageString)
161
+
AssertFullErrorMessage(BarArgument.self,["4827","72","99"],"Error: The value '4827' is invalid for '<int_str>': outOfBounds\n"+ BarArgument.help + BarArgument.usageString)
0 commit comments