예제 #1
0
 def test_empty_array(self):
     self.assertEqual(sortIS([]), [])
예제 #2
0
 def test_one_value_array(self):
     self.assertEqual(sortIS([2]), [2])
예제 #3
0
 def test_different_type_None(self):
     with self.assertRaises(TypeError):
         sortIS(None)
예제 #4
0
 def test_different_type_number(self):
     with self.assertRaises(TypeError):
         sortIS(3)
예제 #5
0
 def test_different_type_string(self):
     with self.assertRaises(TypeError):
         sortIS("string")
예제 #6
0
 def test_sort2(self):
     self.assertEqual(sortIS([2, -1]), [-1, 2])
예제 #7
0
 def test_sort1(self):
     self.assertEqual(sortIS([4, 0, 3, 1, -1, 2]), [-1, 0, 1, 2, 3, 4])