From ee557c55cc37c12aef6844f99726a591dfcd13c2 Mon Sep 17 00:00:00 2001 From: Jon Riehl Date: Thu, 6 Jun 2013 14:13:39 -0500 Subject: [PATCH] Added llpython.tests.test_all module for unit testing all llpython. --- llpython/tests/test_all.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 llpython/tests/test_all.py diff --git a/llpython/tests/test_all.py b/llpython/tests/test_all.py new file mode 100644 index 0000000..82aa9c8 --- /dev/null +++ b/llpython/tests/test_all.py @@ -0,0 +1,16 @@ +#! /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