Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DNotSerializableExceptionTest.java30 NotSerializableException nse = new NotSerializableException(); in test_Constructor() local
31 assertNull(nse.getMessage()); in test_Constructor()
39 NotSerializableException nse = new NotSerializableException(message); in test_ConstructorLjava_lang_String() local
40 assertSame(message, nse.getMessage()); in test_ConstructorLjava_lang_String()
/libcore/jsr166-tests/src/test/java/jsr166/
DFutureTaskTest.java303 Exception nse = new NoSuchElementException(); in testSetException_get() local
305 task.setException(nse); in testSetException_get()
311 assertSame(nse, success.getCause()); in testSetException_get()
312 checkCompletedAbnormally(task, nse); in testSetException_get()
319 assertSame(nse, success.getCause()); in testSetException_get()
320 checkCompletedAbnormally(task, nse); in testSetException_get()
326 checkCompletedAbnormally(task, nse); in testSetException_get()