()
| 8 | |
| 9 | @pytest.fixture(scope="module") |
| 10 | def shm_array(): |
| 11 | name = "test_shm_array" |
| 12 | shape = (10, 10) |
| 13 | dtype = np.float32 |
| 14 | shm = ShmArray(name, shape, dtype) |
| 15 | shm.create_shm() |
| 16 | yield shm |
| 17 | shm.close_shm() |
| 18 | |
| 19 | |
| 20 | def test_create_shm(shm_array): |
nothing calls this directly
no test coverage detected