Exemplo n.º 1
0
 def test_select_sort_on_one_element_list(self):
     self.assertEquals(selection_sort([1]), [1])
Exemplo n.º 2
0
 def test_select_sort_on_one_element_list(self):
     self.assertEquals(selection_sort([1]), [1])
Exemplo n.º 3
0
 def test_select_sort_on_empty_list(self):
     self.assertEquals(selection_sort([]), [])
Exemplo n.º 4
0
 def test_select_sort_on_empty_list(self):
     self.assertEquals(selection_sort([]), [])