ashish2244's picture
Initial commit (part 6)
29ac347 verified
Raw
History Blame Contribute Delete
206 Bytes
using NUnit.Framework;
namespace Tests
{
internal class RuntimeExampleTest
{
[Test]
public void RuntimeTestMath()
{
Assert.AreEqual(2, 1 + 1);
}
}
}