| 529 | } |
| 530 | |
| 531 | void QtPrintersTest::testQMapStringBool() |
| 532 | { |
| 533 | GdbProcess gdb("debuggee_qmapstringbool"); |
| 534 | gdb.execute("break qmapstringbool.cpp:6"); |
| 535 | MapTester tester(gdb, MapTester::MapType::Unique); |
| 536 | commonTestQMapOrMultiMapStringBool(tester); |
| 537 | RETURN_IF_TEST_RESOLVED(); |
| 538 | } |
| 539 | |
| 540 | // NOTE: the QMultiMap test functions below rely on the following guarantee in the QMultiMap documentation: |
| 541 | // the items that share the same key are available from most recently to least recently inserted. |
nothing calls this directly
no test coverage detected