(expectedText, found)
| 45 | } |
| 46 | |
| 47 | fail(expectedText, found) { |
| 48 | let message = formatFailureText(expectedText, found); |
| 49 | message += "\nin test:" + this.name_ |
| 50 | message += "\n" + Function.prototype.toString.apply(this.test_); |
| 51 | %AbortJS(message); |
| 52 | } |
| 53 | |
| 54 | equals(expected, found, name_opt) { |
| 55 | this.actualAsserts_++; |
no test coverage detected