Esempio n. 1
0
 def test_should_return_four_when_list_contains_foo_bar_egg_and_spam(self):
     self.assertEqual(4, length_of_longest_string(["egg", "spam", "foo", "bar"]))
Esempio n. 2
0
 def test_should_return_one_when_list_contains_string_with_no_characters(self):
     self.assertEqual(0, length_of_longest_string([""]))
Esempio n. 3
0
 def test_should_return_one_when_list_contains_string_with_single_character(self):
     self.assertEqual(1, length_of_longest_string(["a"]))
Esempio n. 4
0
 def test_should_return_zero_when_list_is_empty(self):
     self.assertEqual(0, length_of_longest_string([]))
Esempio n. 5
0
 def test_should_return_four_when_list_contains_foo_bar_egg_and_spam(self):
     self.assertEqual(
         4, length_of_longest_string(['egg', 'spam', 'foo', 'bar']))
Esempio n. 6
0
 def test_should_return_one_when_list_contains_string_with_single_character(self):
     self.assertEqual(1, length_of_longest_string(['a']))
Esempio n. 7
0
 def test_should_return_zero_when_list_is_empty(self):
     self.assertEqual(0, length_of_longest_string([]))
Esempio n. 8
0
 def test_should_return_four_when_list_contains_foo_bar_egg_and_spam(self):
     self.assertEqual(
         4, length_of_longest_string(['egg', 'spam', 'foo', 'bar']))