| 1152 | } |
| 1153 | |
| 1154 | void canFindMatchingBracketsInnerPair() { |
| 1155 | SimpleTokenizer var(*this); |
| 1156 | ASSERT(var.tokenize("std::deque<std::set<int> > intsets;")); |
| 1157 | |
| 1158 | const Token * const t = var.tokens()->tokAt(7)->findClosingBracket(); |
| 1159 | ASSERT_EQUALS(">", t->str()); |
| 1160 | ASSERT(var.tokens()->tokAt(9) == t); |
| 1161 | } |
| 1162 | |
| 1163 | void canFindMatchingBracketsOuterPair() { |
| 1164 | SimpleTokenizer var(*this); |
nothing calls this directly
no test coverage detected