| 25 | } |
| 26 | |
| 27 | void testKindStringRoundTrip() { |
| 28 | for (int i = 0; i <= static_cast<int>(rcx::NodeKind::Array); i++) { |
| 29 | auto kind = static_cast<rcx::NodeKind>(i); |
| 30 | QString s = rcx::kindToString(kind); |
| 31 | QCOMPARE(rcx::kindFromString(s), kind); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void testNodeTree_addAndChildren() { |
| 36 | rcx::NodeTree tree; |
nothing calls this directly
no test coverage detected