| 198 | } |
| 199 | |
| 200 | void TestBreakpoint::testConfigInvalidUrl() |
| 201 | { |
| 202 | QFETCH(const QString, expression); |
| 203 | |
| 204 | const BreakpointLocation location(expression); |
| 205 | RETURN_IF_TEST_FAILED(); |
| 206 | const auto config = generateBreakpointConfig(location); |
| 207 | |
| 208 | const Breakpoint b(nullptr, config); |
| 209 | |
| 210 | verifyBreakpointExpression(b, ""); |
| 211 | } |
| 212 | |
| 213 | void TestBreakpoint::testConfigValidUrl() |
| 214 | { |
nothing calls this directly
no test coverage detected