spock-reports
spock-reports copied to clipboard
This project creates a global extension to Spock to create test reports.
Dear @renatoathaydes, Hoping that you could look into this and for it to be an easy fix. To add, regardless whether the condition for the @Requires Annotation is met (Feature...
It looks like annotations cause the `VividASTVisitor` to ignore the blocks of a specification method. I fixed it by overriding the method doing the annotation visiting and skipping the traversal...
Hi, thanks for jour great Spock Extension. The option to use SpockConfig.groovy instad of IReportCreator.properties is very helpful for me. I works without IDE , just Notepad and GroovyConsole and...
The test run without issue, IntelliJ and Maven doesn't report it as failure, but I report html file is generated, but it keeps throwing stacktrace as below Versions: JDK: 11...
I've been trawling through the code (trying to get a handle on https://github.com/AOEpeople/geb-spock-reports/issues/34). I came across com.athaydes.spockframework.report.internal.ReportDataAggregator#readTextFrom: ``` @PackageScope static String readTextFrom( RandomAccessFile file ) { def buffer = new...
Hi there, I'm trying to refer to parameter name in my step definition e.g. when: "I need to see this parameter value #parameterName" But the parameter value doesn't show in...
According to the [docs](https://spockframework.org/spock/docs/1.0/data_driven_testing.html) (under 'Syntactic Variations'), a double pipe symbol can be used in a data table to visually separate the inputs from the outputs: ```groovy where: in1 |...
If JUnit's AssumptionViolatedException was thrown inside the test, Spock treats the test as ignored, but report will show the test as executed. AssumptionViolatedException is a useful feature to skip tests...
Related to #89
Hi! My specifications with tests are located in different packages. For example: ``` com.test.package1 TestSpec1 test1() TestSpec2 test2() com.test.package2 TestSpec3 test3() TestSpec4 test4() ``` Currently all tests results are included...