(self)
| 618 | assert_(eq(x, y)) |
| 619 | |
| 620 | def test_testMasked(self): |
| 621 | # Test of masked element |
| 622 | xx = arange(6) |
| 623 | xx[1] = masked |
| 624 | assert_(str(masked) == '--') |
| 625 | assert_(xx[1] is masked) |
| 626 | assert_equal(filled(xx[1], 0), 0) |
| 627 | |
| 628 | def test_testAverage1(self): |
| 629 | # Test of average. |
nothing calls this directly
no test coverage detected