Home
last modified time | relevance | path

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

/art/test/712-varhandle-invocations/src/
DVarHandleArrayTests.java89 assertThrowsASE(() -> vho.set(values, 0, new Object())); in testObjectArrayVarHandle()
90 assertThrowsASE(() -> vho.set(values, 0, "hello")); in testObjectArrayVarHandle()
98 assertThrowsASE(() -> vho.getAndSet(values, 0, new Object())); in testObjectArrayVarHandle()
99 assertThrowsASE(() -> vho.getAndSet(values, 0, "hello")); in testObjectArrayVarHandle()
107 assertThrowsASE(() -> vho.compareAndExchange(values, 0, ONE, new Object())); in testObjectArrayVarHandle()
108 assertThrowsASE(() -> vho.compareAndExchange(values, 0, ONE, "hello")); in testObjectArrayVarHandle()
116 assertThrowsASE(() -> vho.compareAndSet(values, 0, ONE, new Object())); in testObjectArrayVarHandle()
117 assertThrowsASE(() -> vho.compareAndSet(values, 0, ONE, "hello")); in testObjectArrayVarHandle()
DVarHandleUnitTest.java117 public final void assertThrowsASE(AccessorAccess access) { in assertThrowsASE() method in VarHandleUnitTest