for (Method method : methods) {
for (Annotation annotation : method.getDeclaredAnnotations()) {
Class<? extends Annotation> annotationType = annotation.annotationType();
if (WarpCommons.isWarpLifecycleTest(annotationType)) {
specifiedMethods.add(new ExecutedMethod(method, Arrays.asList(method.getDeclaredAnnotations())));
}
}
}
}