| 106 | } |
| 107 | |
| 108 | void TestBreakpoint::testKindSetDataExpression() |
| 109 | { |
| 110 | QFETCH(const Breakpoint::BreakpointKind, kind); |
| 111 | QFETCH(const QString, expression); |
| 112 | |
| 113 | Breakpoint b(nullptr, kind); |
| 114 | b.setData(Breakpoint::LocationColumn, expression); |
| 115 | |
| 116 | verifyBreakpointExpression(b, expression); |
| 117 | } |
| 118 | |
| 119 | void TestBreakpoint::testConfigInvalidUrl_data() |
| 120 | { |
nothing calls this directly
no test coverage detected