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
Given options -foo, -bar, and -baz that forbid each other (are mutually exclusive)
With args [-foo -bar]
When parse
Should throw CmdLineException with predictable error message so that a thorough assertion can be made in unit tests.
But
Message could say: [-foo] cannot be used with option(s) [-bar -baz]
or could say: [-bar] cannot be used with option(s) [-foo -baz]
depending on environment.
Try running the same test in gradle or Intellij to reproduce.
The text was updated successfully, but these errors were encountered:
Given options -foo, -bar, and -baz that forbid each other (are mutually exclusive)
With args [-foo -bar]
When parse
Should throw CmdLineException with predictable error message so that a thorough assertion can be made in unit tests.
But
Message could say: [-foo] cannot be used with option(s) [-bar -baz]
or could say: [-bar] cannot be used with option(s) [-foo -baz]
depending on environment.
Try running the same test in gradle or Intellij to reproduce.
The text was updated successfully, but these errors were encountered: