mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
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.
6 lines
119 B
Plaintext
6 lines
119 B
Plaintext
// put script tests here
|
|
|
|
function MyTest() {
|
|
expectTrue(2+2 == 4, "basic math should work");
|
|
}
|
|
addUnitTest(MyTest); |