Exemplo n.º 1
0
def test_strings_a_3():
    assert multiply('a', 3) == 'aaa'
Exemplo n.º 2
0
def test_numbers_3_4():
    assert multiply(3, 4) == 12
Exemplo n.º 3
0
def test_numbers_3_4(param_2):
    print(param_2)
    assert multiply(3, param_2) == 12
Exemplo n.º 4
0
 def test_numbers_3_4_with_fixture(self):
     print('test_numbers_3_4_with_fixture')
     self.assertEqual(multiply(3, self.a), 3)
Exemplo n.º 5
0
 def test_strings_a_3(self):
     print('test_strings_a_3')
     self.assertEqual(multiply('a', 3), 'aaa')
Exemplo n.º 6
0
 def test_numbers_3_4(self):
     print('test_numbers_3_4')
     self.assertEqual(multiply(3, 4), 12)
     self.a = 7
 def test_strings_b_2(self):
     print(
         'test_strings_b_2  <============================ actual test code')
     assert multiply('b', 2) == 'bb'
 def test_numbers_5_6(self):
     print(
         'test_numbers_5_6  <============================ actual test code')
     assert multiply(5, 6) == 30
def test_strings_a_3():
    print('test_strings_a_3  <============================ actual test code')
    assert multiply('a', 3) == 'aaa'
Exemplo n.º 10
0
def test_numbers_3_4():
    print('test_numbers_3_4  <============================ actual test code')
    assert multiply(3, 4) == 12