Torque3D/Templates/BaseGame/game/runTests.tscript
marauder2k7 5427e941ce UnitTest
Change unit tests to run without script
runTests now just holds a purely script test example
Test Explorer in VS now works with tests
NB do not use test explorer on purely script based tests.
2023-07-27 21:02:27 +01:00

6 lines
119 B
Plaintext

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