blob: d9d7c9f16eb1e3f67708d92296c71e2ba30be052 (
plain)
1
2
3
4
5
6
7
8
9
|
function TestCase(n, d, e, a) {
this.expect = e;
this.passed = getTestCaseResult(this.expect, this.actual);
}
function getTestCaseResult(expect, actual) {}
new TestCase(
TestCase(3000000000.5)
);
new TestCase(null,null, String('Sally and Fred are sure to come'.match(/^[a-z\s]*/i)));
|