Files
test/test.py

16 lines
273 B
Python
Raw Normal View History

2021-02-20 16:24:16 +01:00
import unittest
class BasicTest(unittest.TestCase):
def test_empty(self):
self.assertTrue(True)
2021-02-20 16:26:11 +01:00
def test_second(self):
self.assertTrue(True)
2021-02-20 16:30:06 +01:00
def test_third(self):
self.assertTrue(True)
2021-02-20 16:24:16 +01:00
if __name__ == '__main__':
unittest.main()