| 310 | |
| 311 | |
| 312 | void fuzzyCompareSymbol(const AreaSymbol& actual, const AreaSymbol& expected) |
| 313 | { |
| 314 | auto pattern_rotable = false; |
| 315 | for (auto i = 0; i < expected.getNumFillPatterns(); ++i) |
| 316 | pattern_rotable |= expected.getFillPattern(i).rotatable(); |
| 317 | for (auto i = 0; i < actual.getNumFillPatterns(); ++i) |
| 318 | COMPARE_SYMBOL_PROPERTY(actual.getFillPattern(i).rotatable(), pattern_rotable, expected); |
| 319 | } |
| 320 | |
| 321 | void fuzzyCompareSymbol(const Symbol& actual, const Symbol& expected, const QByteArray& /*format_id*/) |
| 322 | { |
no test coverage detected