simpleMath.py 240 B

1234567891011121314
  1. __author__ = 'millbr02'
  2. import unittest
  3. class SimpleMath(unittest.TestCase):
  4. def testOne(self):
  5. x = 2 + 2
  6. self.assertEqual(x, 4)
  7. self.assertEqual(type(x), int)
  8. if __name__ == '__main__':
  9. unittest.main()