()
| 173 | |
| 174 | |
| 175 | function BoolTest() { |
| 176 | assertEquals("true", TrueToString()); |
| 177 | assertEquals("true", TrueToString()); |
| 178 | assertEquals("true", TrueToString()); |
| 179 | assertEquals("false", FalseToString()); |
| 180 | assertEquals("false", FalseToString()); |
| 181 | assertEquals("false", FalseToString()); |
| 182 | Boolean.prototype.toString = function() { return "foo"; } |
| 183 | assertEquals("foo", TrueToString()); |
| 184 | assertEquals("foo", FalseToString()); |
| 185 | } |
| 186 | |
| 187 | |
| 188 | // Some tests of shifts that get into the corners in terms of coverage. |
no test coverage detected