Home
last modified time | relevance | path

Searched refs:andThrow (Results 1 – 10 of 10) sorted by relevance

/external/easymock/src/org/easymock/
DMockControl.java169 .andThrow(throwable).once(); in setThrowable()
226 .andThrow(throwable).times(times); in setThrowable()
379 .andThrow(throwable).times(minCount, maxCount); in setThrowable()
385 .andThrow(throwable); in setThrowable()
550 EasyMock.expect(ignored).andThrow(throwable).once(); in expectAndThrow()
564 IExpectationSetters<Object> setter = EasyMock.expect(ignored).andThrow( in expectAndThrow()
580 expect(ignored).andThrow(throwable).times(count); in expectAndThrow()
596 expect(ignored).andThrow(throwable).times(min, max); in expectAndThrow()
DIExpectationSetters.java43 IExpectationSetters<T> andThrow(Throwable throwable); in andThrow() method
/external/easymock/src/org/easymock/internal/
DIMocksControlState.java28 void andThrow(Throwable throwable); in andThrow() method
DMocksControl.java150 public IExpectationSetters<Object> andThrow(Throwable throwable) { in andThrow() method in MocksControl
152 state.andThrow(throwable); in andThrow()
DReplayState.java99 public void andThrow(Throwable throwable) { in andThrow() method in ReplayState
DRecordState.java103 public void andThrow(Throwable throwable) { in andThrow() method in RecordState
/external/guava/guava-tests/test/com/google/common/io/
DFlushablesTest.java80 expectLastCall().andThrow(new IOException("This should only appear in the " in expectThrown()
DCloseablesTest.java101 expectLastCall().andThrow(new IOException("This should only appear in the " in expectThrown()
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/
DDeqpTestRunnerTest.java1671 EasyMock.expectLastCall().andThrow(new RunInterruptedException()); in testInterrupt_killBeforeBatch()
1886 EasyMock.expectLastCall().andThrow(new RunInterruptedException()); in testInterrupt_killReportTestFailed()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFuturesTest.java574 expect(fallback.create(raisedException)).andThrow(expectedException);