| 155 | } |
| 156 | |
| 157 | void TestBreakpoint::testSetDataExpression() |
| 158 | { |
| 159 | QFETCH(const QString, expression); |
| 160 | |
| 161 | Breakpoint b(nullptr, Breakpoint::CodeBreakpoint); |
| 162 | b.setData(Breakpoint::LocationColumn, expression); |
| 163 | |
| 164 | verifyBreakpointExpression(b, expression); |
| 165 | } |
| 166 | |
| 167 | void TestBreakpoint::testSetDataUrlAndLine_data() |
| 168 | { |
nothing calls this directly
no test coverage detected