Skip to content

Commit 95ce8a9

Browse files
committed
Added test all
1 parent ba39cde commit 95ce8a9

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

tests/test_all.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import unittest
2+
3+
from .test_command import CommandTestCase
4+
from .test_reply import ReplyTestCase
5+
from .test_bus import BusTestCase
6+
7+
def create_suite():
8+
test_suite = unittest.TestSuite()
9+
test_suite.addTest(CommandTestCase())
10+
test_suite.addTest(ReplyTestCase())
11+
test_suite.addTest(BusTestCase())
12+
return test_suite
13+
14+
if __name__ == '__main__':
15+
suite = create_suite()
16+
17+
runner=unittest.TextTestRunner()
18+
runner.run(suite)

0 commit comments

Comments
 (0)