Example #1
0
 def test_sum(self):
     self.assertEqual(MethodForTest.summ(15, 15), 30)
Example #2
0
 def test_list(self):
     self.assertEqual(MethodForTest.list(5), 5)
Example #3
0
 def test_notEqual(self):
     self.assertNotEquals(MethodForTest.notEquil(5, 5), 24)
Example #4
0
 def test_multi(self):
     self.assertEqual(MethodForTest.multi(15, 2), 30)
Example #5
0
 def test_string(self):
     self.assertEqual(MethodForTest.string("xx", 3), "xxxxxx")
Example #6
0
 def test_sum(self):
     self.assertEqual(MethodForTest.summ(15, 15), 30)
Example #7
0
 def test_notEqual(self):
     self.assertNotEquals(MethodForTest.notEquil(5, 5), 24)
Example #8
0
 def test_list(self):
     self.assertEqual(MethodForTest.list(5), 5)
Example #9
0
 def test_string(self):
     self.assertEqual(MethodForTest.string("xx", 3), "xxxxxx")
Example #10
0
 def test_multi(self):
     self.assertEqual(MethodForTest.multi(15, 2), 30)