File size: 206 Bytes
29ac347 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | using NUnit.Framework;
namespace Tests
{
internal class RuntimeExampleTest
{
[Test]
public void RuntimeTestMath()
{
Assert.AreEqual(2, 1 + 1);
}
}
}
|