1# 2# This file is part of pyasn1 software. 3# 4# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com> 5# License: http://snmplabs.com/pyasn1/license.html 6# 7try: 8 import unittest2 as unittest 9 10except ImportError: 11 import unittest 12 13suite = unittest.TestLoader().loadTestsFromNames( 14 ['tests.test_debug.suite', 15 'tests.type.__main__.suite', 16 'tests.codec.__main__.suite', 17 'tests.compat.__main__.suite'] 18) 19 20 21if __name__ == '__main__': 22 unittest.TextTestRunner(verbosity=2).run(suite) 23