Added tests for start command
This commit is contained in:
1
unittests/unittests_cli/threads/__init__.py
Normal file
1
unittests/unittests_cli/threads/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
# imports
|
12
unittests/unittests_cli/threads/start_test_thread.py
Normal file
12
unittests/unittests_cli/threads/start_test_thread.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import threading
|
||||
|
||||
from unittests_shared.cli_commands import CLICommands
|
||||
|
||||
|
||||
class StartTestThread(threading.Thread):
|
||||
|
||||
def __init__(self):
|
||||
threading.Thread.__init__(self, daemon=True)
|
||||
|
||||
def run(self):
|
||||
CLICommands.start()
|
Reference in New Issue
Block a user