(self)
| 275 | assert_equal(out, tgt) |
| 276 | |
| 277 | def test_trace(self): |
| 278 | c = [[1, 2], [3, 4], [5, 6]] |
| 279 | assert_equal(np.trace(c), 5) |
| 280 | |
| 281 | def test_transpose(self): |
| 282 | arr = [[1, 2], [3, 4], [5, 6]] |
nothing calls this directly
no test coverage detected