LogarithmPlotter/tests/python/test_config.py
Ad5001 9072e94d14
All checks were successful
continuous-integration/drone/push Build is passing
Starting python tests
2024-09-18 00:30:58 +02:00

10 lines
194 B
Python

import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()