• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.codec.ber.__main__.suite',
15     'tests.codec.cer.__main__.suite',
16     'tests.codec.der.__main__.suite',
17     'tests.codec.native.__main__.suite']
18)
19
20
21if __name__ == '__main__':
22    unittest.TextTestRunner(verbosity=2).run(suite)
23