(a, b)
| 39 | } |
| 40 | |
| 41 | function testNotEqual(a, b) { |
| 42 | assertFalse(a == b); |
| 43 | assertFalse(b == a); |
| 44 | assertTrue(a != b); |
| 45 | assertTrue(b != a); |
| 46 | } |
| 47 | |
| 48 | // Object where ToPrimitive returns value. |
| 49 | function Wrapper(value) { |
no test coverage detected