@@ -224,7 +224,7 @@ void tryToReadFieldValuePreconditions() throws Exception {
224
224
}
225
225
226
226
@ Test
227
- void findMethodDelegates () throws Exception {
227
+ void findMethodDelegates () {
228
228
assertEquals (ReflectionUtils .findMethod (Boolean .class , "valueOf" , String .class .getName ()),
229
229
ReflectionSupport .findMethod (Boolean .class , "valueOf" , String .class .getName ()));
230
230
@@ -233,7 +233,7 @@ void findMethodDelegates() throws Exception {
233
233
}
234
234
235
235
@ Test
236
- void findMethodPreconditions () throws Exception {
236
+ void findMethodPreconditions () {
237
237
assertPreconditionViolationException ("Class" ,
238
238
() -> ReflectionSupport .findMethod (null , "valueOf" , String .class .getName ()));
239
239
assertPreconditionViolationExceptionForString ("Method name" ,
@@ -280,13 +280,13 @@ void findMethodsPreconditions() {
280
280
}
281
281
282
282
@ Test
283
- void findNestedClassesDelegates () throws Exception {
283
+ void findNestedClassesDelegates () {
284
284
assertEquals (ReflectionUtils .findNestedClasses (ClassWithNestedClasses .class , ReflectionUtils ::isStatic ),
285
285
ReflectionSupport .findNestedClasses (ClassWithNestedClasses .class , ReflectionUtils ::isStatic ));
286
286
}
287
287
288
288
@ Test
289
- void findNestedClassesPreconditions () throws Exception {
289
+ void findNestedClassesPreconditions () {
290
290
assertPreconditionViolationException ("Class" ,
291
291
() -> ReflectionSupport .findNestedClasses (null , ReflectionUtils ::isStatic ));
292
292
assertPreconditionViolationException ("Predicate" ,
0 commit comments