Exemplo n.º 1
0
 def test_zero_length_input(self):
     self.assertEqual(charswap(""), "")
Exemplo n.º 2
0
 def test_number_input(self):
     self.assertEqual(charswap(3), "3")
Exemplo n.º 3
0
 def test_input(self):
     self.assertEqual(charswap("hello"), "oellh")
Exemplo n.º 4
0
 def test_single_char_input(self):
     self.assertEqual(charswap("a"), "a")