| 57 | } |
| 58 | |
| 59 | void test_SetProgress(){ |
| 60 | BasicTask t; |
| 61 | int current = 42; |
| 62 | int total = 207; |
| 63 | |
| 64 | t.setProgress(current, total); |
| 65 | |
| 66 | QCOMPARE(t.getProgress(), current); |
| 67 | QCOMPARE(t.getTotalProgress(), total); |
| 68 | } |
| 69 | |
| 70 | void test_basicRun(){ |
| 71 | BasicTask t; |
nothing calls this directly
no test coverage detected