Skip to content

Commit

Permalink
issue #8: Fixing tests issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelPelletierEvraire committed Apr 10, 2024
1 parent 5b4afcc commit 095b766
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./Tests",
"-p",
"test*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}
Binary file not shown.
21 changes: 21 additions & 0 deletions Tests/testWithBaseQuestion.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 095b766

Please sign in to comment.