-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_all.py
44 lines (29 loc) · 1.03 KB
/
test_all.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
import unittest
# WARNING is normal during testing, but ERROR is not
import logging
logging.basicConfig(level=logging.ERROR,
format='%(name)s %(levelname)s %(message)s')
from tests.test_eventid import *
from tests.test_nodeid import *
from tests.test_node import *
from tests.test_canframe import *
from tests.test_physicallayer import *
from tests.test_canphysicallayer import *
from tests.test_canphysicallayergridconnect import *
from tests.test_tcplink import *
from tests.test_mti import *
from tests.test_message import *
from tests.test_linklayer import *
from tests.test_canlink import *
from tests.test_datagramservice import *
from tests.test_memoryservice import *
from tests.test_snip import *
from tests.test_pip import *
from tests.test_nodestore import *
from tests.test_remotenodestore import *
from tests.test_localeventstore import *
from tests.test_processor import *
from tests.test_localnodeprocessor import *
from tests.test_remotenodeprocessor import *
if __name__ == '__main__':
unittest.main()