(expected, found, name_opt)
| 52 | } |
| 53 | |
| 54 | equals(expected, found, name_opt) { |
| 55 | this.actualAsserts_++; |
| 56 | if (!deepEquals(expected, found)) { |
| 57 | this.fail(prettyPrinted(expected), found, name_opt); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | unreachable() { |
| 62 | let message = "Failure: unreachable in test: " + this.name_; |
no test coverage detected