| OLD | NEW |
| (Empty) |
| 1 This page tests for assertion failures in edge cases of property lookup on primi
tive values. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 PASS checkGet(1, Number) is true | |
| 7 PASS checkGet('hello', String) is true | |
| 8 PASS checkGet(true, Boolean) is true | |
| 9 FAIL checkSet(1, Number) should be true. Was false. | |
| 10 FAIL checkSet('hello', String) should be true. Was false. | |
| 11 FAIL checkSet(true, Boolean) should be true. Was false. | |
| 12 PASS checkGetStrict(1, Number) is true | |
| 13 PASS checkGetStrict('hello', String) is true | |
| 14 PASS checkGetStrict(true, Boolean) is true | |
| 15 FAIL checkSetStrict(1, Number) should be true. Was false. | |
| 16 FAIL checkSetStrict('hello', String) should be true. Was false. | |
| 17 FAIL checkSetStrict(true, Boolean) should be true. Was false. | |
| 18 PASS checkRead(1, Number) is true | |
| 19 PASS checkRead('hello', String) is true | |
| 20 PASS checkRead(true, Boolean) is true | |
| 21 PASS checkWrite(1, Number) is true | |
| 22 PASS checkWrite('hello', String) is true | |
| 23 PASS checkWrite(true, Boolean) is true | |
| 24 PASS checkReadStrict(1, Number) is true | |
| 25 PASS checkReadStrict('hello', String) is true | |
| 26 PASS checkReadStrict(true, Boolean) is true | |
| 27 FAIL checkWriteStrict(1, Number) should throw an exception. Was true. | |
| 28 FAIL checkWriteStrict('hello', String) should throw an exception. Was true. | |
| 29 FAIL checkWriteStrict(true, Boolean) should throw an exception. Was true. | |
| 30 PASS checkNumericGet(1, Number) is true | |
| 31 PASS checkNumericGet('hello', String) is true | |
| 32 PASS checkNumericGet(true, Boolean) is true | |
| 33 FAIL checkNumericSet(1, Number) should be true. Was false. | |
| 34 FAIL checkNumericSet('hello', String) should be true. Was false. | |
| 35 FAIL checkNumericSet(true, Boolean) should be true. Was false. | |
| 36 FAIL checkNumericGetStrict(1, Number) should be true. Was false. | |
| 37 FAIL checkNumericGetStrict('hello', String) should be true. Was false. | |
| 38 FAIL checkNumericGetStrict(true, Boolean) should be true. Was false. | |
| 39 FAIL checkNumericSetStrict(1, Number) should be true. Was false. | |
| 40 FAIL checkNumericSetStrict('hello', String) should be true. Was false. | |
| 41 FAIL checkNumericSetStrict(true, Boolean) should be true. Was false. | |
| 42 PASS checkNumericRead(1, Number) is true | |
| 43 PASS checkNumericRead('hello', String) is true | |
| 44 PASS checkNumericRead(true, Boolean) is true | |
| 45 PASS checkNumericWrite(1, Number) is true | |
| 46 PASS checkNumericWrite('hello', String) is true | |
| 47 PASS checkNumericWrite(true, Boolean) is true | |
| 48 PASS checkNumericReadStrict(1, Number) is true | |
| 49 PASS checkNumericReadStrict('hello', String) is true | |
| 50 PASS checkNumericReadStrict(true, Boolean) is true | |
| 51 FAIL checkNumericWriteStrict(1, Number) should throw an exception. Was true. | |
| 52 FAIL checkNumericWriteStrict('hello', String) should throw an exception. Was tru
e. | |
| 53 FAIL checkNumericWriteStrict(true, Boolean) should throw an exception. Was true. | |
| 54 PASS didNotCrash is true | |
| 55 PASS successfullyParsed is true | |
| 56 | |
| 57 TEST COMPLETE | |
| 58 | |
| OLD | NEW |