override fun customizeFragments()

in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/JTRegSettingsEditor.kt [84:119]


    override fun customizeFragments(
        fragments: MutableList<SettingsEditorFragment<JTRegConfiguration, *>>,
        moduleClasspath: SettingsEditorFragment<JTRegConfiguration, ModuleClasspathCombo>,
        commonParameterFragments: CommonParameterFragments<JTRegConfiguration>
    ) {
        attachJreAndNativePathFragments(fragments)

        // tests environment
        attachTestEnvVarsFragment(fragments)
        attachJTRegVMOptions(fragments)
        attachTestModeFragment(fragments)

        // tests selection group
        attachTestKindFragment(fragments)
        attachTestCategoryFragment(fragments)
        attachKeywordFragment(fragments)
        attachExcludeListFragment(fragments)


        // jtreg settings
        if (BuildConfig.isJetBrainsVendor()) {
            attachRepeatModeFragment(fragments)
        }

        attachReportDirOverrideFragment(fragments)
        attachConcurrencySettings(fragments)
        attachTimeoutFactorOverride(fragments)
        attachTimeLimitOverride(fragments)
        attachIgnoreModeFragment(fragments)

        if (BuildConfig.isJetBrainsVendor() && SystemInfo.isLinux) {
            attachWestonSettingsFragment(fragments)
        }

        attachRunCmdFragment(fragments)
    }