Home | History | Annotate | Download | only in Math

Lines Matching defs:testcases

41     var testcases = getTestCases();
53 for ( tc=0; tc < testcases.length; tc++ ) {
54 testcases[tc].actual = eval( testcases[tc].actual );
55 testcases[tc].passed = writeTestCaseResult(
56 testcases[tc].expect,
57 testcases[tc].actual,
58 testcases[tc].description +" = "+
59 testcases[tc].actual );
61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "property should be read-only ";
64 return ( testcases );