This commit is contained in:
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
8
tests/test_ex1.py
Normal file
8
tests/test_ex1.py
Normal file
@ -0,0 +1,8 @@
|
||||
import unittest
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_simple1(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
8
tests/test_ex2.py
Normal file
8
tests/test_ex2.py
Normal file
@ -0,0 +1,8 @@
|
||||
import unittest
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_simple1(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
8
tests/test_ex3.py
Normal file
8
tests/test_ex3.py
Normal file
@ -0,0 +1,8 @@
|
||||
import unittest
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_simple1(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
8
tests/test_ex4.py
Normal file
8
tests/test_ex4.py
Normal file
@ -0,0 +1,8 @@
|
||||
import unittest
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_simple1(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
8
tests/test_ex5.py
Normal file
8
tests/test_ex5.py
Normal file
@ -0,0 +1,8 @@
|
||||
import unittest
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_simple1(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Reference in New Issue
Block a user