def test_safeMax_list_with_nan(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6, float('Nan')]), 6)
 def test_safeMax_list_with_string(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(['a', 10, 30])
 def test_safeMax_list_all_numbers(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6]), 6)
 def test_safeMax_number_not_list(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(1)
 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)
 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)