diff --git a/Tests/__init__.py b/tests/__init__.py similarity index 100% rename from Tests/__init__.py rename to tests/__init__.py diff --git a/Tests/__pycache__/testWithBaseQuestion.cpython-312.pyc b/tests/__pycache__/testWithBaseQuestion.cpython-312.pyc similarity index 100% rename from Tests/__pycache__/testWithBaseQuestion.cpython-312.pyc rename to tests/__pycache__/testWithBaseQuestion.cpython-312.pyc diff --git a/Tests/__pycache__/testsWithBaseQuestion.cpython-312.pyc b/tests/__pycache__/testsWithBaseQuestion.cpython-312.pyc similarity index 100% rename from Tests/__pycache__/testsWithBaseQuestion.cpython-312.pyc rename to tests/__pycache__/testsWithBaseQuestion.cpython-312.pyc diff --git a/Tests/test_whit_base_question.py b/tests/test_whit_base_question.py similarity index 95% rename from Tests/test_whit_base_question.py rename to tests/test_whit_base_question.py index 5bdcd350..0ef41550 100644 --- a/Tests/test_whit_base_question.py +++ b/tests/test_whit_base_question.py @@ -1,21 +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() +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()