| 185 | } |
| 186 | |
| 187 | void TestBreakpoint::testSetDataUrlAndLine() |
| 188 | { |
| 189 | QFETCH(const QString, location); |
| 190 | |
| 191 | const BreakpointLocation expectedLocation(location); |
| 192 | RETURN_IF_TEST_FAILED(); |
| 193 | |
| 194 | Breakpoint b(nullptr, Breakpoint::CodeBreakpoint); |
| 195 | b.setData(Breakpoint::LocationColumn, location); |
| 196 | |
| 197 | verifyBreakpointLocation(b, expectedLocation); |
| 198 | } |
| 199 | |
| 200 | void TestBreakpoint::testConfigInvalidUrl() |
| 201 | { |
nothing calls this directly
no test coverage detected