You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
488 B
24 lines
488 B
4 months ago
|
import antlr3
|
||
|
import testbase
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class t024finally(testbase.ANTLRTest):
|
||
|
def setUp(self):
|
||
|
self.compileGrammar()
|
||
|
|
||
|
|
||
|
def testValid1(self):
|
||
|
cStream = antlr3.StringStream('foobar')
|
||
|
lexer = self.getLexer(cStream)
|
||
|
tStream = antlr3.CommonTokenStream(lexer)
|
||
|
parser = self.getParser(tStream)
|
||
|
events = parser.prog()
|
||
|
|
||
|
assert events == ['catch', 'finally'], events
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|
||
|
|