Reporter | Yuri Astrakhan (yurik) |
---|---|
Created | Feb 24, 2012 1:02:06 AM |
Updated | Feb 24, 2012 1:02:06 AM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Victor Kropp (victor.kropp) |
Subsystem | Unit Testing |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
Run this unit test, than, in the unit test session, click on any specific test, and try running or debugging it. Result - the test is marked as "Ignored" instead of running it.
[TestFixture, Explicit] public class MyTests { [Test] public void Test( [Values(0, 1, 2, 3, 5, 10, 100)] int a, [Values(0, 1, 2, 3, 5, 10, 100)] int b) { Assert.AreEqual(a*b, a*b); } }