| 33 | } |
| 34 | |
| 35 | void ReplyTest::basicLoad() |
| 36 | { |
| 37 | auto sidepanel_replay = main_win->findChild<SidepanelReplay*>("SidepanelReplay"); |
| 38 | QVERIFY2( sidepanel_replay, "Can't get pointer to SidepanelReplay" ); |
| 39 | |
| 40 | QByteArray log = readFile("://crossdoor_trace.fbl"); |
| 41 | sidepanel_replay->loadLog( log ); |
| 42 | |
| 43 | QCOMPARE( sidepanel_replay->transitionsCount(), size_t(27) ); |
| 44 | } |
| 45 | |
| 46 | QTEST_MAIN(ReplyTest) |
| 47 |
nothing calls this directly
no test coverage detected