| 44 | } |
| 45 | |
| 46 | TEST(PathTreeJSON, EmptyTreeToJson) { |
| 47 | PathTree tree; |
| 48 | ASSERT_NO_THROW(common::pathTreeToJson(tree)); |
| 49 | auto json = common::pathTreeToJson(tree); |
| 50 | ASSERT_EQ(json.size(), 0); |
| 51 | } |
| 52 | |
| 53 | TEST(PathTreeJSON, EmptyJsonArrayToTree) { |
| 54 |
nothing calls this directly
no test coverage detected