Home | History | Annotate | Download | only in Math

Lines Matching refs:testcases

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