예제 #1
0
 def test_safeMax_list_with_nan(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6, float('Nan')]), 6)
예제 #2
0
 def test_safeMax_list_with_string(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(['a', 10, 30])
예제 #3
0
 def test_safeMax_list_all_numbers(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6]), 6)
예제 #4
0
 def test_safeMax_number_not_list(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(1)
예제 #5
0
 def test_safeMax_empty_string(self):
     self.assertEqual(glyph.safeMax(''), None)
예제 #6
0
 def test_safeMax_list_with_nan(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6, float('Nan')]), 6)
예제 #7
0
 def test_safeMax_None(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(None)
예제 #8
0
 def test_safeMax_list_all_numbers(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6]), 6)
예제 #9
0
 def test_safeMax_list_with_string(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(['a', 10, 30])
예제 #10
0
 def test_safeMax_empty_string(self):
     self.assertEqual(glyph.safeMax(''), None)
예제 #11
0
 def test_safeMax_number_not_list(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(1)
예제 #12
0
 def test_safeMax_None(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(None)