Open decriptor opened 6 years ago
Ok, I think I found the repro
and/or the cause. I had two tests with the same name, but not the same signature.
I'm getting mixed results, but it still highlights the issue
[TestCase ("1", "2", TestName = "Missing")]
[TestCase ("1", "2", TestName = "Empty")]
public void Test1 (string one, string two)
{
Assert.AreEqual ("1", one);
Assert.AreEqual ("2", two);
}
//[Repeat (40)]
[Test]
public void Test1 ()
{
Assert.AreEqual (1, 1);
}
I get this exception when trying to run a single unit test. It would seem that there are more bugs in play here. It is a single
[Test]
, but the output says that 3 tests were run:However, the test results pad shows zeros:
Here is the exception: