-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalltests.py
More file actions
25 lines (21 loc) · 922 Bytes
/
alltests.py
File metadata and controls
25 lines (21 loc) · 922 Bytes
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
import application
import unittest
from brightnessunittest import BrightnessUnitTest
from c64germanunittest import C64GermanUnitTest
from coordinatesunittest import CooridnatesUnitTest
from fontunittest import FontUnitTest
from neodrawunittest import NeoDrawUnitTest
from numbers6x8unittest import Numbers6x8UnitTest
from wlanconnectorunittest import WlanConnectorUnitTest
from worldtimeapiunittest import WorldTimeApiUnitTest
suite = unittest.TestSuite()
suite.addTest(C64GermanUnitTest) # type: ignore
suite.addTest(CooridnatesUnitTest) # type: ignore
suite.addTest(FontUnitTest) # type: ignore
suite.addTest(NeoDrawUnitTest) # type: ignore
suite.addTest(Numbers6x8UnitTest) # type: ignore
suite.addTest(WlanConnectorUnitTest) # type: ignore
suite.addTest(WorldTimeApiUnitTest) # type: ignore
suite.addTest(BrightnessUnitTest) # type: ignore
runner = unittest.TestRunner() # type: ignore
runner.run(suite)