← Back to team overview

nunit-core team mailing list archive

[Bug 1022810] [NEW] Need ability to turn off combinatorial

 

You have been subscribed to a public bug:

When you have a combinatorial attribute such as the following:

[Test, Combinatorial]
public void MyTest(
    [Values(1,2,3)] int x,
    [Values("A","B")] string s)
{
    ...
}


Sometimes there is an issue with a certain set of values and you need to debug it.  Would be nice to just turn off the combinatorial feature (by not having the attribute!), so that this could work for debugging:


[Test, TestCase(3,"A")]
public void MyTest(
    [Values(1,2,3)] int x,
    [Values("A","B")] string s)
{
    ...
}


As it is now, you have to completely redo the signature (and put it back after fixing bug/test) or setup a complex break point, etc....

[Test, TestCase(3,"A")]
public void MyTest(
    int x,
    string s)
{
    ...
}

** Affects: nunit-3.0
     Importance: Undecided
         Status: New


** Tags: feature
-- 
Need ability to turn off combinatorial
https://bugs.launchpad.net/bugs/1022810
You received this bug notification because you are a member of NUnit Core Developers, which is the registrant for NUnit Framework.


References