Skip to content

Commit

Permalink
start
Browse files Browse the repository at this point in the history
  • Loading branch information
WillemNicolas committed May 5, 2023
1 parent f122fe4 commit 67db6d2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions run_unit_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import unittest
from unit_tests import test



if __name__ == "__main__":
test.unittest.main()
12 changes: 12 additions & 0 deletions unit_tests/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unittest


class Test(unittest.TestCase):

def setUp(self) -> None:
return super().setUp()

def test(self):
assert(True)

unittest.main()

0 comments on commit 67db6d2

Please sign in to comment.