1
2
3
4
5
6
7
8
9
10
11
12
13
| import unittest
| from physik import do_something
|
|
| class MyTestCase(unittest.TestCase):
| def test_something(self):
| arg = 123456
| result = do_something(arg)
| self.assertEqual(arg, result)
|
|
| if __name__ == '__main__':
| unittest.main()
|
|