| 63 | } |
| 64 | |
| 65 | void verifyBreakpointExpression(const Breakpoint& breakpoint, const QString& expression) |
| 66 | { |
| 67 | QCOMPARE(breakpoint.url(), {}); |
| 68 | QCOMPARE(breakpoint.line(), -1); |
| 69 | QCOMPARE(breakpoint.expression(), expression); |
| 70 | } |
| 71 | |
| 72 | void verifyBreakpointLocation(const Breakpoint& breakpoint, const BreakpointLocation& location) |
| 73 | { |
no test coverage detected