I am trying to set up a NUnit 3 task and have issues passing the required commandline options to the test. The test expects parameters that include spaces (e.g. --testparam=Foo="Foo Bar"), but it gets parsed to
TestParametersDictionary:
Foo -> Foo
and t hen tries to use the "Bar" as a test input instead. For some reason the quotes get ignored. I already tried escaping the quotes, but then I get
TestParametersDictionary:
Foo -> "Foo Bar"
The expected results would be
TestParametersDictionary:
Foo -> Foo Bar
without any quotes. When running NUnit with the above --testparam=Foo="Foo Bar" everything works fine. It is just when it is done from the Bamboo task that things break.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.