LogarithmPlotter/tests/python/test_config.py

11 lines
194 B
Python
Raw Normal View History

2024-09-17 22:30:58 +00:00
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()