| 211 | } |
| 212 | |
| 213 | void TestBreakpoint::testConfigValidUrl() |
| 214 | { |
| 215 | QFETCH(const QString, location); |
| 216 | |
| 217 | const BreakpointLocation expectedLocation(location); |
| 218 | RETURN_IF_TEST_FAILED(); |
| 219 | const auto config = generateBreakpointConfig(expectedLocation); |
| 220 | |
| 221 | const Breakpoint b(nullptr, config); |
| 222 | |
| 223 | verifyBreakpointLocation(b, expectedLocation); |
| 224 | } |
| 225 | |
| 226 | #include "moc_test_breakpoint.cpp" |
nothing calls this directly
no test coverage detected