2017-02-07 15:40:46 +00:00
|
|
|
from __future__ import absolute_import, print_function
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from .test_trees import TestTrees
|
2017-08-04 12:32:39 +00:00
|
|
|
|
2017-02-07 15:40:46 +00:00
|
|
|
# from .test_selectors import TestSelectors
|
|
|
|
# from .test_grammars import TestPythonG, TestConfigG
|
|
|
|
|
2017-08-04 12:32:39 +00:00
|
|
|
from .test_parser import (
|
|
|
|
TestLalrStandard,
|
|
|
|
TestEarleyStandard,
|
|
|
|
TestLalrContextual,
|
|
|
|
TestEarleyScanless,
|
|
|
|
TestEarleyDynamic,
|
|
|
|
|
|
|
|
TestFullEarleyScanless,
|
|
|
|
TestFullEarleyDynamic,
|
|
|
|
|
|
|
|
TestParsers,
|
|
|
|
)
|
|
|
|
|
2017-02-07 15:40:46 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|