TestReportsSettings

data class TestReportsSettings(val checkstyle: ReportSettings = TestReportSettings( ReportsSettings.CHECKSTYLE_ENABLED_DEFAULT, ReportsSettings.CHECKSTYLE_PATH_DEFAULT ), val sarif: ReportSettings = TestReportSettings( ReportsSettings.SARIF_ENABLED_DEFAULT, ReportsSettings.SARIF_PATH_DEFAULT ), val text: ReportSettings = TestReportSettings( ReportsSettings.TEXT_ENABLED_DEFAULT, ReportsSettings.TEXT_PATH_DEFAULT ), val depths: ReportSettings = TestReportSettings( ReportsSettings.DEPTHS_ENABLED_DEFAULT, ReportsSettings.DEPTHS_PATH_DEFAULT ), val graphs: PerModuleReportSettings = TestPerModuleReportSettings( enabled = ReportsSettings.GRAPH_ENABLED_DEFAULT, outputDir = null )) : ReportsSettings(source)

Constructors

Link copied to clipboard
constructor(checkstyle: ReportSettings = TestReportSettings( ReportsSettings.CHECKSTYLE_ENABLED_DEFAULT, ReportsSettings.CHECKSTYLE_PATH_DEFAULT ), sarif: ReportSettings = TestReportSettings( ReportsSettings.SARIF_ENABLED_DEFAULT, ReportsSettings.SARIF_PATH_DEFAULT ), text: ReportSettings = TestReportSettings( ReportsSettings.TEXT_ENABLED_DEFAULT, ReportsSettings.TEXT_PATH_DEFAULT ), depths: ReportSettings = TestReportSettings( ReportsSettings.DEPTHS_ENABLED_DEFAULT, ReportsSettings.DEPTHS_PATH_DEFAULT ), graphs: PerModuleReportSettings = TestPerModuleReportSettings( enabled = ReportsSettings.GRAPH_ENABLED_DEFAULT, outputDir = null ))

Properties

Link copied to clipboard
open override val checkstyle: ReportSettings
Link copied to clipboard
open override val depths: ReportSettings
Link copied to clipboard
open override val graphs: PerModuleReportSettings
Link copied to clipboard
open override val sarif: ReportSettings
Link copied to clipboard
open override val text: ReportSettings