(self)
| 340 | assert_almost_equal(actual, desired) |
| 341 | |
| 342 | def test_onintegers_with_mask(self): |
| 343 | # Test average on integers with mask |
| 344 | a = average(array([1, 2])) |
| 345 | assert_equal(a, 1.5) |
| 346 | a = average(array([1, 2, 3, 4], mask=[False, False, True, True])) |
| 347 | assert_equal(a, 1.5) |
| 348 | |
| 349 | def test_complex(self): |
| 350 | # Test with complex data. |
nothing calls this directly
no test coverage detected