aboutsummaryrefslogtreecommitdiff
path: root/runtime/Python/tests/t023scopes.py
blob: 4c33b8af78fd5f9f859b22cd654027443c97a314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import antlr3
import testbase
import unittest


class t023scopes(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)
        parser.prog()


if __name__ == '__main__':
    unittest.main()