| 36 | } |
| 37 | |
| 38 | void TestMICommandQueue::testConstructor() |
| 39 | { |
| 40 | KDevMI::MI::CommandQueue commandQueue; |
| 41 | |
| 42 | // check |
| 43 | QCOMPARE(commandQueue.count(), 0); |
| 44 | QCOMPARE(commandQueue.isEmpty(), true); |
| 45 | QCOMPARE(commandQueue.haveImmediateCommand(), false); |
| 46 | } |
| 47 | |
| 48 | void TestMICommandQueue::testDestructor() |
| 49 | { |
nothing calls this directly
no test coverage detected