Skip to content

Commit

Permalink
Create unitteste
Browse files Browse the repository at this point in the history
  • Loading branch information
ihumaunkabir committed May 26, 2024
1 parent 5734b85 commit 40d1570
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test_main.py
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit 40d1570

Please sign in to comment.