* This test uses assert{True,False}(... == ...) instead of * assertEquals(..., ...) to not rely on the details of the * implementation of assertEquals.
(a, b)
| 32 | */ |
| 33 | |
| 34 | function testEqual(a, b) { |
| 35 | assertTrue(a == b); |
| 36 | assertTrue(b == a); |
| 37 | assertFalse(a != b); |
| 38 | assertFalse(b != a); |
| 39 | } |
| 40 | |
| 41 | function testNotEqual(a, b) { |
| 42 | assertFalse(a == b); |
no test coverage detected