Ejemplo n.º 1
0
    def test_list_int(self):
        """
        Test that it can take empty strings
        """

        result = full_name("", "")
        self.assertEqual(result, "")
Ejemplo n.º 2
0
 def test_correct_input1(self):
     self.assertEqual(name.full_name(f, l),f + " " + l)
Ejemplo n.º 3
0
 def test_blank_firstName(self):
         self.assertEqual(name.full_name("", "Smith"), " Smith")
Ejemplo n.º 4
0
 def test_normal_name(self):
         self.assertEqual(name.full_name("Emily", "Lee"), "Emily Lee")
Ejemplo n.º 5
0
 def test3(self):
     self.assertEqual(name.full_name("Luke","Skywalker"), "Luke Skywalker")
Ejemplo n.º 6
0
 def test2(self):
     self.assertEqual(name.full_name("Fail1","Fail2"), "Invalid name")
Ejemplo n.º 7
0
 def test1(self):
     self.assertEqual(name.full_name("Bob","Smith"), "Bob Smith")
Ejemplo n.º 8
0
 def test_list_int(self):
     """
     Test that it can take numbers
     """
     result = full_name(1, 2)
     self.assertEqual(result, "12")
Ejemplo n.º 9
0
 def test_list_int(self):
     """
     Test that it can handle booleans
     """
     result = full_name(True, False)
     self.assertEqual(result, "TrueFalse")