| 38 | } |
| 39 | |
| 40 | TEST(AppendJsonAsCdata, RoundTripsSimpleJson) { |
| 41 | const QString in = QStringLiteral(R"({"topics":["/imu/accel"],"time":"publish"})"); |
| 42 | EXPECT_EQ(roundTripJson(in), in); |
| 43 | } |
| 44 | |
| 45 | TEST(AppendJsonAsCdata, RoundTripsEmptyString) { |
| 46 | EXPECT_EQ(roundTripJson(QString()), QString()); |
nothing calls this directly
no test coverage detected