Home | History | Annotate | Download | only in src

Lines Matching refs:expectedException

45    * The "expectedException" must match the class of the exception thrown,
51 Class expectedException) {
87 if (expectedException != null) {
90 "', was expecting " + expectedException);
94 if (expectedException == null) {
99 if (!expectedException.equals(ex.getClass())) {
101 + expectedException.getName() + ", got "
600 Class expectedException) {
637 if (expectedException != null) {
640 "', was expecting " + expectedException);
644 if (expectedException == null) {
649 if (!expectedException.equals(ex.getClass())) {
651 + expectedException.getName() + ", got "