(self)
| 347 | npt.assert_array_equal(x, y) |
| 348 | |
| 349 | def test_copy_magic(self): |
| 350 | logger.info( 'Test copy evaluate with magic output' ) |
| 351 | x = np.arange(self.ssize) |
| 352 | ne3.evaluate('y_magic=x') |
| 353 | npt.assert_array_equal(x, locals()['y_magic'] ) |
| 354 | |
| 355 | def test_rational(self): |
| 356 | logger.info( 'Test rational evaluation' ) |
nothing calls this directly
no outgoing calls
no test coverage detected