(self)
| 261 | assert_equal(t5, t2.T) |
| 262 | |
| 263 | def test_physical_quantities(self): |
| 264 | a = PhysicalQuantity(1.0) |
| 265 | b = PhysicalQuantity(5.0) |
| 266 | assert_equal(geomspace(a, b), geomspace(1.0, 5.0)) |
| 267 | |
| 268 | def test_subclass(self): |
| 269 | a = array(1).view(PhysicalQuantity2) |
nothing calls this directly
no test coverage detected