(self)
| 630 | class TestStackArrays: |
| 631 | # Test stack_arrays |
| 632 | def _create_arrays(self): |
| 633 | x = np.array([1, 2, ]) |
| 634 | y = np.array([10, 20, 30]) |
| 635 | z = np.array( |
| 636 | [('A', 1.), ('B', 2.)], dtype=[('A', '|S3'), ('B', float)]) |
| 637 | w = np.array([(1, (2, 3.0)), (4, (5, 6.0))], |
| 638 | dtype=[('a', int), ('b', [('ba', float), ('bb', int)])]) |
| 639 | return w, x, y, z |
| 640 | |
| 641 | def test_solo(self): |
| 642 | # Test stack_arrays on single arrays |
no outgoing calls
no test coverage detected