| 119 | |
| 120 | |
| 121 | void MapTest::printerConfigTest() |
| 122 | { |
| 123 | Map map; |
| 124 | QVERIFY(!map.hasPrinterConfig()); |
| 125 | map.setPrinterConfig({ map }); |
| 126 | QVERIFY(map.hasPrinterConfig()); |
| 127 | map.resetPrinterConfig(); |
| 128 | QVERIFY(!map.hasPrinterConfig()); |
| 129 | } |
| 130 | |
| 131 | void MapTest::specialColorsTest() |
| 132 | { |
nothing calls this directly
no test coverage detected