Esempio n. 1
0
 def test_one_argument(self):
     self.assertFalse(sum(self.bool1, self.bool2), msg="The input argument should not contain boolean value")
Esempio n. 2
0
 def test_one_argument(self):
     self.assertFalse(sum(self.int1, self.int2, self.int3), msg="The number  of input arguments must always be 2")
Esempio n. 3
0
 def test_one_argument(self):
     self.assertTrue(sum(self.float1, self.float1))
Esempio n. 4
0
 def test_one_argument(self):
     self.assertFalse(sum(self.string, self.int1), msg="The input argument should not be a string")
Esempio n. 5
0
 def test_one_argument(self):
     self.assertTrue(sum(self.int1, self.int2))