16 lines
496 B
Python
16 lines
496 B
Python
#! /usr/bin/env python
|
|
# ______________________________________________________________________
|
|
|
|
import unittest
|
|
|
|
from .test_byte_control import TestByteControl
|
|
from .test_byte_flow import TestBytecodeFlowBuilder
|
|
from .test_addr_flow import TestAddressFlowBuilder
|
|
|
|
# ______________________________________________________________________
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|
|
|
|
# ______________________________________________________________________
|
|
# End of llpython/tests/test_all.py
|