| 184 | } |
| 185 | |
| 186 | void BinaryLoggerTest::testBinaryToTextLayout() |
| 187 | { |
| 188 | log("Hello world!"); |
| 189 | auto list = mAppender->clearList(); |
| 190 | QCOMPARE(list.size(), 1); |
| 191 | auto result = list.at(0); |
| 192 | QVERIFY(result.contains(QStringLiteral("12 bytes: 48 65 6c 6c 6f 20 77 6f 72 6c 64 21"))); |
| 193 | } |
| 194 | |
| 195 | void BinaryLoggerTest::testBinaryEventFilter() |
| 196 | { |