Home
last modified time | relevance | path

Searched refs:assertThrowsISE (Results 1 – 2 of 2) sorted by relevance

/art/test/712-varhandle-invocations/src/
DVarHandleArrayTests.java178 assertThrowsISE(() -> vhShort.getAcquire(array, fi)); in testByteArrayViewVarHandle()
179 assertThrowsISE(() -> vhShort.setRelease(array, fi, (short) 0)); in testByteArrayViewVarHandle()
212 assertThrowsISE(() -> vhInt.getAcquire(array, fi)); in testByteArrayViewVarHandle()
213 assertThrowsISE(() -> vhInt.setRelease(array, fi, (int) 0)); in testByteArrayViewVarHandle()
267 assertThrowsISE(() -> vhShort.getAcquire(buffer, fi)); in testByteBufferVarHandle()
268 assertThrowsISE(() -> vhShort.setRelease(buffer, fi, (short) 0)); in testByteBufferVarHandle()
307 assertThrowsISE(() -> vhInt.getAcquire(buffer, fi)); in testByteBufferVarHandle()
308 assertThrowsISE(() -> vhInt.setRelease(buffer, fi, (int) 0)); in testByteBufferVarHandle()
DVarHandleUnitTest.java121 public final void assertThrowsISE(AccessorAccess access) { in assertThrowsISE() method in VarHandleUnitTest