aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/org/anarres/cpp/LexerSourceTestCase.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tests/org/anarres/cpp/LexerSourceTestCase.java b/src/tests/org/anarres/cpp/LexerSourceTestCase.java
index ac3f61f..d554814 100644
--- a/src/tests/org/anarres/cpp/LexerSourceTestCase.java
+++ b/src/tests/org/anarres/cpp/LexerSourceTestCase.java
@@ -18,10 +18,13 @@ public class LexerSourceTestCase extends BaseTestCase implements Test {
Arrays.toString(out));
StringLexerSource s = new StringLexerSource(in);
+ int col = 0;
for (int i = 0; i < out.length; i++) {
Token tok = s.token();
System.out.println("Token is " + tok);
assertEquals(out[i], tok.getType());
+ assertEquals(col, tok.getColumn());
+ col += tok.getText().length();
}
assertEquals(EOF, s.token().getType());
}