| 202 | class ValueChecker { |
| 203 | public: |
| 204 | ValueChecker() : nodes(0) {} |
| 205 | void operator()(StringTree const &node) { |
| 206 | ASSERT_EQ(nodes == 0, node.isRoot()) << "Root is visited first"; |
| 207 | if (node.getName().empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected