← Back to team overview

nunit-core team mailing list archive

Re: [Bug 712444] Re: nunit-console /run don't execute parameterized test-cases (with commas in test-case name)

 

Actually not the same bug at all. This bug was fixed a long time ago.
Please don't add new problems to old bugs as it makes tracking very
difficult.

In your case, there is no bug. You have misunderstood what the /run option
does. I suggest bringing it up on the NUnit-Discuss list.
On Apr 27, 2013 12:30 PM, "kishore" <kishore.d514@xxxxxxxxx> wrote:

> i am having the same issue.
>
> My Code:
> namespace ClassLibrary2
> {
>     [TestFixture]
>     public class Class1
>     {
>         [Test]
>         public void Test1(string browser)
>         {
>             MessageBox.Show(Browser );
>         }
>
>     }
> }
>
> My command line execution:
> C:\Documents and Settings\>"C:\Program Files\NUnit
> 2.6.2\bin\nunit-console"
> "D:\Automation\ClassLibrary2\bin\Debug\ClassLibrary2.dll
> /run:ClassLibrary2.Class1.Test1(\"Firefox\")
>
> Result:
> Tests run: 0, Errors: 0, Failures: 0, Inconclusive: 0, Time: 0 seconds
>
>
> if i modified my code as
> namespace ClassLibrary2
> {
>     [TestFixture]
>     [TestCase("firefox")]
>     public class Class1
>     {
>         [Test]
>         public void Test1(string browser)
>         {
>             MessageBox.Show(Browser );
>         }
>
>     }
>
> }
>
> its working fine and my test is executing,  because, its  but this wrong
> bc params frm TestCase not from commandline.
>
> C:\Documents and Settings\>"C:\Program Files\NUnit 2.6.2\bin\nunit-
> console" "D:\Automation\ClassLibrary2\bin\Debug\ClassLibrary2.dll
> /run:ClassLibrary2.Class1.Test1(\"Chrome\")
>
> i should get Chrome .
>
> Please give me the solution .
>
> Thansk in advance.
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/712444
>
> Title:
>   nunit-console /run don't execute parameterized test-cases (with commas
>   in test-case name)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/nunitv2/+bug/712444/+subscriptions
>

-- 
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/712444

Title:
  nunit-console /run don't execute parameterized test-cases (with commas
  in test-case name)

Status in NUnit V2 Test Framework:
  Fix Released
Status in NUnit V2 2.5 series:
  Fix Released
Status in NUnit V2 trunk series:
  Fix Released

Bug description:
  To reproduce:
  1. Create test-fixture or test-case with 2 string-type parameters
  2. Try to run any test-case from such test-fixture 
  3. or try to run test-case (with 2 parameters of string type)

  This issue is caused by: https://code.launchpad.net/~u-launchpad-
  brianlow-com/nunitv2/MultiTestNames

  Name of parametrized test-case is:
  e.g.: Oberon.ATSelenium.TestApps.ATGTests.Lib.CheckoutSanity("iplay","Firefox").FP_AMEX("Guest")
  and it contains comma in test name

  command-line to run this test:
  nunit-console-x86.exe Oberon.ATSelenium.TestApps.ATGTests.Lib.dll /run=Oberon.ATSelenium.TestApps.ATGTests.Lib.CheckoutSanity(\"iplay\",\"Firefox\").FP_AMEX(\"Guest\")

  On same time comma is used to split different test-cases from each other in command.
  Comma in test-case name is treated as delimiter between test-cases, and as a result test-case is not executed.

  Reproducible on versions 2.5.6-2.5.9 (not reproducible on version
  lower then 2.5.6)

  To fix:
   use semicolon ( ; ) as delimiter between test-cases for command line /run
  File: NUnit-2.5.9.10348\src\NUnitCore\interfaces\Filters\SimpleNameFilter.cs: 39

  I have fixed that locally, updating from
  foreach (string name in namesToAdd.Split(',')) 
  to 
  foreach (string name in namesToAdd.Split(';'))

  And running it like:
  nunit-console-x86.exe Oberon.ATSelenium.TestApps.ATGTests.Lib.dll /run=Oberon.ATSelenium.TestApps.ATGTests.Lib.CheckoutSanity(\"iplay\",\"Firefox\").FP_AMEX(\"Guest\");Oberon.ATSelenium.TestApps.ATGTests.Lib.CheckoutSanity(\"iplay\",\"Firefox\").FP_VISA(\"Guest\")

  - is executing 2 test-cases (which is exactly what I tried to do :) )

To manage notifications about this bug go to:
https://bugs.launchpad.net/nunitv2/+bug/712444/+subscriptions


References