TestReportsSettings
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
Content copied to clipboard
Constructors
Link copied to clipboard
fun TestReportsSettings( 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
))
Content copied to clipboard