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