Fabian Kneißl

Results 2 issues of Fabian Kneißl

When using Spring proxies as stages (as has been implemented in #254), INFO-level errors from CglibAopProxy show up when executing tests. To reproduce, run `com.tngtech.jgiven.integration.spring.test.proxy.SpringProxyTest` The following errors are displayed:...

Spring

Using JGiven `2.0.2`, when adding the following dependency to [example-projects/spring-boot/build.gradle](https://github.com/TNG/JGiven/blob/master/example-projects/spring-boot/build.gradle): ``` testImplementation "org.springframework.kafka:spring-kafka-test" ``` then the tests fail with ``` java.lang.NoSuchMethodError: 'java.lang.String[] com.thoughtworks.paranamer.Paranamer.lookupParameterNames(java.lang.reflect.Executable)' at com.tngtech.jgiven.impl.util.ParameterNameUtil.getParameterNamesUsingParanamer(ParameterNameUtil.java:53) at com.tngtech.jgiven.impl.util.ParameterNameUtil.mapArgumentsWithParameterNames(ParameterNameUtil.java:34) at com.tngtech.jgiven.impl.intercept.StepInterceptorImpl.handleMethod(StepInterceptorImpl.java:211) at...