Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:BeginTest

61 function BeginTest(name) {
91 BeginTest("strict: undefined"); TestStrict(undefined); EndTest();
92 BeginTest("strict: null"); TestStrict(null); EndTest();
93 BeginTest("strict: 1"); TestStrict(1); EndTest();
94 BeginTest("strict: 1.2"); TestStrict(1.2); EndTest();
95 BeginTest("strict: 'asdf'"); TestStrict('asdf'); EndTest();
96 BeginTest("strict: true"); TestStrict(true); EndTest();
115 BeginTest("non-strict: undefined"); TestNonStrict(undefined); EndTest();
116 BeginTest("non-strict: null"); TestNonStrict(null); EndTest();
117 BeginTest("non-strict: 1"); TestNonStrict(1); EndTest();
118 BeginTest("non-strict: 1.2"); TestNonStrict(1.2); EndTest();
119 BeginTest("non-strict: 'asdf'"); TestNonStrict('asdf'); EndTest();
120 BeginTest("non-strict: true"); TestNonStrict(true); EndTest();