You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, targeting the class Nested would silently fail:
public class Tests
{
[Test]
public void Fail()
{
Assert.AreEqual(1, 2);
}
public class Nested
{
[Test]
public void Fail()
{
Assert.AreEqual(1, 2);
}
}
}
The text was updated successfully, but these errors were encountered:
For example, targeting the class
Nested
would silently fail:The text was updated successfully, but these errors were encountered: