Browse Source

Added another test

remotes/origin/feature/feature-logical-operations
fdai7783 11 months ago
parent
commit
b649baace0
  1. 3
      src/test/py/test_logical_operations.py

3
src/test/py/test_logical_operations.py

@ -39,6 +39,9 @@ class calculationsWithRoots(unittest.TestCase):
def test_one_zero_0_or_1_equals_1(self):
self.assertEqual(one_zero(0, 1), 1)
def test_one_zero_0_or_1_equals_11(self):
self.assertEqual(one_zero(1, 1), 1)
if __name__ == "__main__":
unittest.main()
Loading…
Cancel
Save