Renato Athaydes
Renato Athaydes
@SamuelGraf thanks for pushing for a fix for this :) I've opened a feature request with Spock... I know they are very careful with introducing new features, so let's see...
As far as I can tell, in Spock 2.0, ` throw new AssumptionViolatedException('')` causes the test to fail. Both the Gradle report as well as spock-reports consider this a test...
It would be a little useless to add it as most of the code runs by reflection, called as an extension to Spock. Most tests are like system tests due...
I read this in a hurry and misunderstood, I think :) You're asking about test coverage about the tests that Spock runs in your project?! Ah, do you have some...
I agree, this buffer is too small, and the allocation of a String inside the loop is unnecessary. Do you want to send a PR fixing that?
It's Spock itself that looks at this file. Do the Spock config options work in this file? If not, I suggest you ask on the Spock project.
I don't get it. Why is spock printing this twice? What do you mean by "before" and "after" your tests run? This should print only once, right before when your...
> Why spock printing twice. I don't know. You need to find out because that should not happen. Can you show me the exact command you use to run the...
I have just tried the following: Create SpockConfig.groovy ```groovy spockReports { set 'com.athaydes.spockframework.report.build':'1.1.0' set 'com.athaydes.spockframework.report.projectName':'My Testproject' set 'com.athaydes.spockframework.report.projectVersion':'1.1.5' set 'projectName':'My Testproject' } ``` Create Groovy Specification tmp.groovy: ```groovy @Grab(group='com.athaydes', module='spock-reports',...
I didn't know you were using a template report creator. That explains it. This type just doesn't support those properties right now. You can easily find other ways to pass...