Renato Athaydes
Renato Athaydes
> java.lang.NoClassDefFoundError: Could not initialize class com.athaydes.spockframework.report.internal.ReportDataAggregator Interesting given that this class has been in spock-reports forever. Do you have custom class loaders, custom Spock config or anything else that...
The only static initializers I see in this class that could be throwing an error are these: ```groovy static final charset = Charset.forName( 'utf-8' ) static final jsonParser = new...
Just crossed my mind you may be missing the groovy-json module in the classpath. As explained [in the README](https://github.com/renatoathaydes/spock-reports#if-you-are-using-gradle): > The only dependencies this project has are Groovy (only the...
This was working fine in Spock 1, but seems to have stopped working in certain cases in Spock 2.
I think this has to do with `@Unroll` being now the default... did you mark your test with whatever the NOT-unrolled annotation is or it's unrolled?
This scenario is included in the tests. See `com.athaydes.spockframework.report.FakeTest` and the expected reports using in the assertions: * `src/test/resources/com/athaydes/spockframework/report/internal/FakeTestReport.html` * `src/test/resources/FakeTest.md` Only the unrolled case is checked because there is...
Sorry for the delay... been busy with other projects. > Now I'm actually leaning more towards current implementation, since ErrorInfo already contains 'kind' of entity which is being executed as...
Hi! I am currently on vacation and will not be able to answer in the next 2 weeks. Sorry about that, but as soon as I get back I will...
Hi @sbglasius sorry for the delay. I hope you are familiar with the extension methods spock-reports adds to `spock.lang.Specification`. Basically, it lets any sub-class of `Specification` to add info to...
Ok, that's a good idea to add to the summary report... I will add something for that.