Skip to content

Commit

Permalink
Added test all
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhz committed Nov 20, 2019
1 parent ba39cde commit 95ce8a9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/test_all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import unittest

from .test_command import CommandTestCase
from .test_reply import ReplyTestCase
from .test_bus import BusTestCase

def create_suite():
test_suite = unittest.TestSuite()
test_suite.addTest(CommandTestCase())
test_suite.addTest(ReplyTestCase())
test_suite.addTest(BusTestCase())
return test_suite

if __name__ == '__main__':
suite = create_suite()

runner=unittest.TextTestRunner()
runner.run(suite)

0 comments on commit 95ce8a9

Please sign in to comment.