Home | History | Annotate | Download | only in FunctionObjects

Lines Matching refs:testcases

46     var testcases = new Array();
47 testcases[tc++] = new TestCase( SECTION, "Function.prototype == Function.proto", true, Function.__proto__ == Function.prototype );
52 for (tc=0 ; tc < testcases.length; tc++ ) {
53 testcases[tc].passed = writeTestCaseResult(
54 testcases[tc].expect,
55 testcases[tc].actual,
56 testcases[tc].description +" = "+ testcases[tc].actual );
58 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
61 return ( testcases );