From 40d1570d050c006746504f42491516fa94bbe2e2 Mon Sep 17 00:00:00 2001 From: Humaun Kabir Date: Sun, 26 May 2024 20:10:14 +0300 Subject: [PATCH] Create unitteste --- test_main.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test_main.py 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