├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── news.md ├── releases └── Release_Notes.txt └── src ├── main ├── groovy │ └── com │ │ └── athaydes │ │ └── spockframework │ │ └── report │ │ ├── IReportCreator.groovy │ │ ├── SpockReportExtension.groovy │ │ ├── extension │ │ └── SpockReportsSpecificationExtension.groovy │ │ ├── internal │ │ ├── AbstractHtmlCreator.groovy │ │ ├── ConfigLoader.groovy │ │ ├── CssResource.groovy │ │ ├── HtmlReportAggregator.groovy │ │ ├── HtmlReportCreator.groovy │ │ ├── KnowsWhenAndWhoRanTest.groovy │ │ ├── MultiReportCreator.groovy │ │ ├── ProblemBlockWriter.groovy │ │ ├── ReportDataAggregator.groovy │ │ ├── SpecData.groovy │ │ ├── SpecSummaryNameOption.groovy │ │ ├── SpockReportsConfiguration.groovy │ │ ├── StringFormatHelper.groovy │ │ └── StringTemplateProcessor.groovy │ │ ├── template │ │ ├── TemplateReportAggregator.groovy │ │ └── TemplateReportCreator.groovy │ │ ├── util │ │ ├── Hasher.groovy │ │ └── Utils.groovy │ │ └── vivid │ │ ├── SpecSourceCode.groovy │ │ ├── SpecSourceCodeCollector.groovy │ │ ├── SpecSourceCodeReader.groovy │ │ └── VividAstInspector.groovy └── resources │ ├── META-INF │ ├── groovy │ │ └── org.codehaus.groovy.runtime.ExtensionModule │ └── services │ │ └── org.spockframework.runtime.extension.IGlobalExtension │ ├── com │ └── athaydes │ │ └── spockframework │ │ └── report │ │ └── internal │ │ └── config.properties │ ├── spock-feature-report.css │ ├── spock-summary-report.css │ └── templateReportCreator │ ├── spec-template.md │ └── summary-template.md └── test ├── groovy └── com │ └── athaydes │ └── spockframework │ └── report │ ├── FakeTest.groovy │ ├── FullyIgnoredSpec.groovy │ ├── ReportSpec.groovy │ ├── SpecIncludingExtraInfo.groovy │ ├── SpockReportExtensionSpec.groovy │ ├── UnrolledSpec.groovy │ ├── VividFakeTest.groovy │ ├── engine │ └── CanRunSpockSpecs.groovy │ ├── hierarchy_tests │ ├── ChildSpec.groovy │ └── ParentSpec.groovy │ ├── internal │ ├── ConfigLoaderSpec.groovy │ ├── HtmlReportAggregatorSpec.groovy │ ├── HtmlReportCreatorSpec.groovy │ ├── ProblemBlockWriterSpec.groovy │ ├── SimulatedReportWriter.groovy │ ├── StringFormatHelperSpec.groovy │ ├── StringTemplateProcessorSpec.groovy │ ├── TestHelper.groovy │ └── VividAstInspectorSpec.groovy │ ├── template │ └── TemplateReportCreatorSpec.groovy │ ├── util │ └── UtilsSpec.groovy │ └── vivid │ └── SpecSourceCodeSpec.groovy └── resources ├── FakeTest.md ├── VividFakeTest.md └── com └── athaydes └── spockframework └── report └── internal ├── FakeTestReport.html ├── FullyIgnoredSpecReport.html ├── SingleTestSummaryReport.html ├── SpecIncludingExtraInfoReport.html ├── TestSummaryReport.html ├── UnrolledSpecReport.html └── VividFakeTestReport.html /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/gradlew.bat -------------------------------------------------------------------------------- /news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/news.md -------------------------------------------------------------------------------- /releases/Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/releases/Release_Notes.txt -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/IReportCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/IReportCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/SpockReportExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/SpockReportExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/extension/SpockReportsSpecificationExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/extension/SpockReportsSpecificationExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/AbstractHtmlCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/AbstractHtmlCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/ConfigLoader.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/ConfigLoader.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/CssResource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/CssResource.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/HtmlReportAggregator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/HtmlReportAggregator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/HtmlReportCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/HtmlReportCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/KnowsWhenAndWhoRanTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/KnowsWhenAndWhoRanTest.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/MultiReportCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/MultiReportCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/ProblemBlockWriter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/ProblemBlockWriter.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/ReportDataAggregator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/ReportDataAggregator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/SpecData.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/SpecData.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/SpecSummaryNameOption.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/SpecSummaryNameOption.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/SpockReportsConfiguration.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/SpockReportsConfiguration.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/StringFormatHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/StringFormatHelper.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/internal/StringTemplateProcessor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/internal/StringTemplateProcessor.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/template/TemplateReportAggregator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/template/TemplateReportAggregator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/template/TemplateReportCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/template/TemplateReportCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/util/Hasher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/util/Hasher.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/util/Utils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/util/Utils.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCode.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCode.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeCollector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeCollector.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeReader.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeReader.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/athaydes/spockframework/report/vivid/VividAstInspector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/groovy/com/athaydes/spockframework/report/vivid/VividAstInspector.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.spockframework.runtime.extension.IGlobalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/META-INF/services/org.spockframework.runtime.extension.IGlobalExtension -------------------------------------------------------------------------------- /src/main/resources/com/athaydes/spockframework/report/internal/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/com/athaydes/spockframework/report/internal/config.properties -------------------------------------------------------------------------------- /src/main/resources/spock-feature-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/spock-feature-report.css -------------------------------------------------------------------------------- /src/main/resources/spock-summary-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/spock-summary-report.css -------------------------------------------------------------------------------- /src/main/resources/templateReportCreator/spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/templateReportCreator/spec-template.md -------------------------------------------------------------------------------- /src/main/resources/templateReportCreator/summary-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/main/resources/templateReportCreator/summary-template.md -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/FakeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/FakeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/FullyIgnoredSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/FullyIgnoredSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/ReportSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/ReportSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/SpecIncludingExtraInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/SpecIncludingExtraInfo.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/SpockReportExtensionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/SpockReportExtensionSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/UnrolledSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/UnrolledSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/VividFakeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/VividFakeTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/engine/CanRunSpockSpecs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/engine/CanRunSpockSpecs.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/hierarchy_tests/ChildSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/hierarchy_tests/ChildSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/hierarchy_tests/ParentSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/hierarchy_tests/ParentSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/ConfigLoaderSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/ConfigLoaderSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/HtmlReportAggregatorSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/HtmlReportAggregatorSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/HtmlReportCreatorSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/HtmlReportCreatorSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/ProblemBlockWriterSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/ProblemBlockWriterSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/SimulatedReportWriter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/SimulatedReportWriter.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/StringFormatHelperSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/StringFormatHelperSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/StringTemplateProcessorSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/StringTemplateProcessorSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/TestHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/TestHelper.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/internal/VividAstInspectorSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/internal/VividAstInspectorSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/template/TemplateReportCreatorSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/template/TemplateReportCreatorSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/util/UtilsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/util/UtilsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/groovy/com/athaydes/spockframework/report/vivid/SpecSourceCodeSpec.groovy -------------------------------------------------------------------------------- /src/test/resources/FakeTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/FakeTest.md -------------------------------------------------------------------------------- /src/test/resources/VividFakeTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/VividFakeTest.md -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/FakeTestReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/FakeTestReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/FullyIgnoredSpecReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/FullyIgnoredSpecReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/SingleTestSummaryReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/SingleTestSummaryReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/SpecIncludingExtraInfoReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/SpecIncludingExtraInfoReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/TestSummaryReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/TestSummaryReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/UnrolledSpecReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/UnrolledSpecReport.html -------------------------------------------------------------------------------- /src/test/resources/com/athaydes/spockframework/report/internal/VividFakeTestReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoathaydes/spock-reports/HEAD/src/test/resources/com/athaydes/spockframework/report/internal/VividFakeTestReport.html --------------------------------------------------------------------------------