(self, a, b, tags)
| 463 | class SolveCases(LinalgSquareTestCase, LinalgGeneralizedSquareTestCase): |
| 464 | # kept apart from TestSolve for use for testing with matrices. |
| 465 | def do(self, a, b, tags): |
| 466 | x = linalg.solve(a, b) |
| 467 | assert_almost_equal(b, dot_generalized(a, x)) |
| 468 | assert_(consistent_subclass(x, b)) |
| 469 | |
| 470 | |
| 471 | class TestSolve(SolveCases): |
nothing calls this directly
no test coverage detected