(self)
| 556 | assert_(eq(x, y)) |
| 557 | |
| 558 | def test_testMasked(self): |
| 559 | # Test of masked element |
| 560 | xx = arange(6) |
| 561 | xx[1] = masked |
| 562 | assert_(str(masked) == '--') |
| 563 | assert_(xx[1] is masked) |
| 564 | assert_equal(filled(xx[1], 0), 0) |
| 565 | |
| 566 | def test_testAverage1(self): |
| 567 | # Test of average. |
nothing calls this directly
no test coverage detected