1import unittest
2import sys
3
4sys.path.insert(0, "../src/.")
5from test_access import *
6from test_audit import *
7from test_refpolicy import *
8from test_refparser import *
9from test_policygen import *
10from test_matching import *
11from test_interfaces import *
12from test_objectmodel import *
13from test_module import *
14
15if __name__ == "__main__":
16    unittest.main()
17