| 190 | } |
| 191 | |
| 192 | void compareSymbol(const Symbol& actual, const Symbol& expected) |
| 193 | { |
| 194 | COMPARE_SYMBOL_PROPERTY(actual.isHidden(), expected.isHidden(), expected); |
| 195 | COMPARE_SYMBOL_PROPERTY(actual.isProtected(), expected.isProtected(), expected); |
| 196 | VERIFY_SYMBOL_PROPERTY(actual.stateEquals(&expected), expected); |
| 197 | VERIFY_SYMBOL_PROPERTY(actual.equals(&expected, Qt::CaseInsensitive), expected); |
| 198 | } |
| 199 | |
| 200 | void compareMaps(const Map& actual, const Map& expected) |
| 201 | { |
no test coverage detected