| 45 | } |
| 46 | |
| 47 | void test_SetStatus_MultiStep(){ |
| 48 | BasicTask_MultiStep t; |
| 49 | QString status {"test status"}; |
| 50 | |
| 51 | t.setStatus(status); |
| 52 | |
| 53 | QCOMPARE(t.getStatus(), status); |
| 54 | // Even though it is multi step, it does not override the getStepStatus method, |
| 55 | // so it should remain the same. |
| 56 | QCOMPARE(t.getStepStatus(), status); |
| 57 | } |
| 58 | |
| 59 | void test_SetProgress(){ |
| 60 | BasicTask t; |
nothing calls this directly
no test coverage detected