Skip to content

Commit

Permalink
issue #8: removing Tests and adding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelPelletierEvraire authored Apr 10, 2024
1 parent 01dfcfd commit 8b87c6e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Empty file added tests/__init__.py
Empty file.
Binary file not shown.
Binary file not shown.
21 changes: 21 additions & 0 deletions tests/test_whit_base_question.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import unittest

class testWithBaseQuestion(unittest.TestCase):
def setUp(self):
# This method will be called before each test
pass

def tearDown(self):
# This method will be called after each test
pass

def test_case_1(self):
# Write your test case here
pass

def test_case_2(self):
# Write your test case here
pass

if __name__ == '__main__':
unittest.main()

0 comments on commit 8b87c6e

Please sign in to comment.