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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.