| 1726 | } |
| 1727 | |
| 1728 | void unreadChar(int c) { |
| 1729 | if (pos == 0) |
| 1730 | __testlib_fail("StringInputStreamReader::unreadChar(int): pos == 0."); |
| 1731 | pos--; |
| 1732 | if (pos < s.length()) |
| 1733 | s[pos] = char(c); |
| 1734 | } |
| 1735 | |
| 1736 | std::string getName() { |
| 1737 | return __testlib_part(s); |
nothing calls this directly
no test coverage detected