OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:somethingwaswrong
(Results
1 - 1
of
1
) sorted by null
/external/mockito/src/test/java/org/mockitousage/customization/
BDDMockitoTest.java
41
given(mock.simpleMethod("foo")).willThrow(new
SomethingWasWrong
());
46
} catch (
SomethingWasWrong
expected) {
52
given(mock.simpleMethod("foo")).willThrow(
SomethingWasWrong
.class);
57
} catch (
SomethingWasWrong
expected) {
65
given(mock.simpleMethod("foo")).willThrow(
SomethingWasWrong
.class, AnotherThingWasWrong.class);
70
} catch (
SomethingWasWrong
expected) {
129
willThrow(new
SomethingWasWrong
()).given(mock).voidMethod();
134
} catch (
SomethingWasWrong
expected) {
140
willThrow(
SomethingWasWrong
.class).given(mock).voidMethod();
145
} catch (
SomethingWasWrong
expected)
[
all
...]
Completed in 66 milliseconds