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
{{ message }}
This repository was archived by the owner on Aug 15, 2022. It is now read-only.
Running this tests marks all tests as ignored in AgUnit (StatLight works fine):
(Tried with and without the singular [Test]; tried adding and removing test references)
using NUnit.Framework;
namespace SilverlightTest1
{
[TestFixture]
public class Tests
{
[Test]
[TestCase(1)]
[TestCase(2)]
public void TestMethod1(int a)
{
Assert.AreEqual(1,a);
}
}
}