(self, load_async)
| 3019 | @pytest.mark.asyncio |
| 3020 | @pytest.mark.parametrize("load_async", [True, False]) |
| 3021 | async def test_CopyOnWriteArray(self, load_async): |
| 3022 | v = Variable(dims=("x", "y"), data=CopyOnWriteArray(self.d)) |
| 3023 | await self.check_orthogonal_indexing(v, load_async) |
| 3024 | await self.check_vectorized_indexing(v, load_async) |
| 3025 | # doubly wrapping |
| 3026 | v = Variable(dims=("x", "y"), data=CopyOnWriteArray(LazilyIndexedArray(self.d))) # type: ignore[arg-type] |
| 3027 | await self.check_orthogonal_indexing(v, load_async) |
| 3028 | await self.check_vectorized_indexing(v, load_async) |
| 3029 | |
| 3030 | @pytest.mark.asyncio |
| 3031 | @pytest.mark.parametrize("load_async", [True, False]) |
nothing calls this directly
no test coverage detected