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)
def test_safeMax_None(self): with self.assertRaises(TypeError): glyph.safeMax(None)