From eb43d9348959b78ced86c2185b4f6e17bdca54f1 Mon Sep 17 00:00:00 2001 From: fdai7783 Date: Fri, 19 Jan 2024 11:00:42 +0100 Subject: [PATCH] Deleted file with typo --- ...arithmic_ann_expo_and_root_calculations.py | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/test/py/logarithmic_ann_expo_and_root_calculations.py diff --git a/src/test/py/logarithmic_ann_expo_and_root_calculations.py b/src/test/py/logarithmic_ann_expo_and_root_calculations.py deleted file mode 100644 index 2a9594e..0000000 --- a/src/test/py/logarithmic_ann_expo_and_root_calculations.py +++ /dev/null @@ -1,29 +0,0 @@ -import unittest -from src.main.py.logarithmic_and_expo_and_root_calculations import * - - -class primitive_calculations(unittest.TestCase): - def setUp(self): - pass - - def tearDown(self): - pass - - def test_sqrt_of_4_equals_2(self): - self.assertEqual(sqrt(4), 2) - - def test_2_potentiate_3_equals_8(self): - self.assertEqual(potentiate(2, 3), 8) - - def test_4_log_2_equals_2(self): - self.assertEqual(logarithmize(4, 2), 2) - - def test_4_ld_equals_2(self): - self.assertEqual(logarithmize_dualis(4), 2) - - def test_10_log10_equals_1(self): - self.assertEqual(logarithmize_base_10(10), 1) - - -if __name__ == "__main__": - unittest.main()