|
|
@ -15,10 +15,10 @@ class calculationsWithRoots(unittest.TestCase): |
|
|
|
def test_disconjunctive_identity_1_and_1_equals_None(self): |
|
|
|
self.assertEqual(identity_conjunctive(1, 1), None) |
|
|
|
|
|
|
|
def test_disconjunctive_identity__and_1_equals_None(self): |
|
|
|
def test_disconjunctive_identity_0_and_1_equals_None(self): |
|
|
|
self.assertEqual(identity_conjunctive(0, 1), None) |
|
|
|
|
|
|
|
def test_disconjunctive_identity__and_1_equals_None(self): |
|
|
|
def test_disconjunctive_identity_0_and_0_equals_0(self): |
|
|
|
self.assertEqual(identity_conjunctive(0, 0), 0) |
|
|
|
|
|
|
|
|
|
|
|