All checks were successful
Python unit tests / unittests (push) Successful in 7s
9 lines
143 B
Python
9 lines
143 B
Python
import unittest
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_simple1(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|