Browse Source

added test to use sqrt_power with float as exponent

remotes/origin/feature/feature-calculations_with_roots
fdai7764 11 months ago
parent
commit
45f04a018a
  1. 3
      src/test/py/test_calculations_with_roots.py

3
src/test/py/test_calculations_with_roots.py

@ -24,6 +24,9 @@ class calculationsWithRoots(unittest.TestCase):
def test_sqrt_negative_4_to_power_of_3_should_be_negative_one_for_error(self): def test_sqrt_negative_4_to_power_of_3_should_be_negative_one_for_error(self):
self.assertEqual(sqrt_power(-4, 3), -1) self.assertEqual(sqrt_power(-4, 3), -1)
def test_sqrt_16_to_power_of_point5_should_be_2(self):
self.assertEqual(sqrt_power(16, 0.5), 2)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
Loading…
Cancel
Save