(self)
| 242 | self.assertTrue(math.isnan(math.acos(NAN))) |
| 243 | |
| 244 | def testAcosh(self): |
| 245 | self.assertRaises(TypeError, math.acosh) |
| 246 | self.ftest('acosh(1)', math.acosh(1), 0) |
| 247 | self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) |
| 248 | self.assertRaises(ValueError, math.acosh, 0) |
| 249 | self.assertRaises(ValueError, math.acosh, -1) |
| 250 | self.assertEqual(math.acosh(INF), INF) |
| 251 | self.assertRaises(ValueError, math.acosh, NINF) |
| 252 | self.assertTrue(math.isnan(math.acosh(NAN))) |
| 253 | |
| 254 | def testAsin(self): |
| 255 | self.assertRaises(TypeError, math.asin) |
nothing calls this directly
no test coverage detected