test/test.py

16 lines
273 B
Python
Raw Normal View History

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