(self)
| 297 | assert_equal(t5, t2.T) |
| 298 | |
| 299 | def test_physical_quantities(self): |
| 300 | a = PhysicalQuantity(1.0) |
| 301 | b = PhysicalQuantity(5.0) |
| 302 | assert_equal(geomspace(a, b), geomspace(1.0, 5.0)) |
| 303 | |
| 304 | def test_subclass(self): |
| 305 | a = array(1).view(PhysicalQuantity2) |
nothing calls this directly
no test coverage detected