runTests.tscript 119 B

123456
  1. // put script tests here
  2. function MyTest() {
  3. expectTrue(2+2 == 4, "basic math should work");
  4. }
  5. addUnitTest(MyTest);