11 lines
166 B
Python
11 lines
166 B
Python
import math
|
|
import unittest
|
|
|
|
|
|
|
|
class TestObjects(unittest.TestCase):
|
|
def test(self):
|
|
self.assertEqual(1,1)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |