diff --git a/test_main.py b/test_main.py new file mode 100644 index 0000000..7b8a53e --- /dev/null +++ b/test_main.py @@ -0,0 +1,23 @@ +import unittest + +class TestMain(unittest.TestCase): + def test_start_command(self): + pass + + def test_help_command(self): + pass + + def test_info_command(self): + pass + + def test_handle_message(self): + pass + + def test_process_image(self): + pass + + def test_process_file(self): + pass + +if __name__ == '__main__': + unittest.main() \ No newline at end of file