-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtests.py
executable file
·45 lines (42 loc) · 2.08 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
@project Maprox <http://www.maprox.net>
@info Project tests
@copyright 2009-2016, Maprox LLC
"""
import unittest
from lib.handlers.galileo.tags import TestCase as tc0
from lib.handlers.galileo.packets import TestCase as tc1
from lib.handlers.galileo.commands import TestCase as tc1b
from lib.handlers.galileo.abstract import TestCase as tc2
from lib.crc16 import TestCase as tc3
from lib.handlers.naviset.packets import TestCase as tc4
from lib.handlers.naviset.commands import TestCase as tc4b
from lib.handlers.naviset.abstract import TestCase as tc5
from lib.handlers.naviset.gt10 import TestCase as tc6
from lib.handlers.naviset.gt20 import TestCase as tc7
from lib.handlers.globalsat.abstract import TestCase as tc8
from lib.handlers.globalsat.commands import TestCase as tc8b
from lib.handlers.globalsat.commands_tr151 import TestCase as tc8c
from lib.handlers.globalsat.tr151 import TestCase as tc9
from lib.handlers.globalsat.tr203 import TestCase as tc10
from lib.handlers.globalsat.tr206 import TestCase as tc11
from lib.handlers.globalsat.tr600 import TestCase as tc12
from lib.handlers.globalsat.gtr128 import TestCase as tc12a
from lib.handlers.teltonika.abstract import TestCase as tc13
from lib.handlers.teltonika.fmxxxx import TestCase as tc14
from lib.handlers.teltonika.gh3000 import TestCase as tc14b
from lib.handlers.teltonika.packets import TestCase as tc15
from lib.handlers.teltonika.commands import TestCase as tc15b
from lib.handlers.atrack.abstract import TestCase as tc16
from lib.handlers.atrack.packets import TestCase as tc17
from lib.handlers.atrack.ax5 import TestCase as tc18
from lib.handlers.autolink.abstract import TestCase as tc19
from lib.handlers.autolink.default import TestCase as tc20
from lib.handlers.autolink.packets import TestCase as tc21
from lib.handlers.autolink.commands import TestCase as tc22
from lib.handlers.ime.abstract import TestCase as tc23
from lib.handlers.ime.packets import TestCase as tc25
from lib.handlers.ime.commands import TestCase as tc26
from lib.handlers.globusgps.gltr1mini import TestCase as tc27
if __name__ == '__main__':
unittest.main()