blob: fcf424f7d390b1ae2fecdea14144bc057ad5e613 [file] [log] [blame]
package gls.ch03.s02
/** Checks Lexical Translation steps as defined in $3.2 of GLS
* @author Jeremy Rayner
*/
class LexicalTranslation1 extends GroovyTestCase {
void testTranslationOfUnicodeEscapes() {
assert "A" == "\u0041"
}
//todo: test that we have a stream of tokens (RI is antlr specific...)
}