Activity log for bug #1022810

Date Who What changed Old value New value Message
2012-07-10 04:52:35 Wayne Brantley bug added bug
2012-07-10 15:56:48 Charlie Poole affects nunitv2 nunit-3.0
2012-11-04 05:47:12 Charlie Poole nunit-3.0: status New Triaged
2012-11-04 05:47:14 Charlie Poole nunit-3.0: importance Undecided Wishlist
2013-10-05 05:33:27 Charlie Poole tags feature feature framework
2013-10-19 03:02:30 Charlie Poole description 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) { ... } [Issue now tracked at https://github.com/nunit/nunit-framework/issues/15] 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) {     ... }
2013-10-19 03:02:44 Charlie Poole tags feature framework github