Object KotlinSourceSetTree.Companion
-
- All Implemented Interfaces:
public class KotlinSourceSetTree.Companion
-
-
Field Summary
Fields Modifier and Type Field Description private final KotlinSourceSetTreemainprivate final KotlinSourceSetTreetestprivate final KotlinSourceSetTreeunitTestprivate final KotlinSourceSetTreeinstrumentedTestprivate final KotlinSourceSetTreeintegrationTestpublic final static KotlinSourceSetTree.CompanionINSTANCE
-
Method Summary
Modifier and Type Method Description final KotlinSourceSetTreegetMain()The 'main' SourceSetTree. final KotlinSourceSetTreegetTest()The 'test' SourceSetTree. final KotlinSourceSetTreegetUnitTest()Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonUnitTest' as the root SourceSet e.g. final KotlinSourceSetTreegetInstrumentedTest()Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonInstrumentedTest' as the root SourceSet e.g. final KotlinSourceSetTreegetIntegrationTest()Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonIntegrationTest' as root SourceSEt -
-
Method Detail
-
getMain
final KotlinSourceSetTree getMain()
The 'main' SourceSetTree. Typically, with 'commonMain' as the root SourceSet
-
getTest
final KotlinSourceSetTree getTest()
The 'test' SourceSetTree. Typically, with 'commonTest' as the root SourceSet
-
getUnitTest
final KotlinSourceSetTree getUnitTest()
Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonUnitTest' as the root SourceSet e.g. relevant for organising Android unitTest compilations/SourceSets
-
getInstrumentedTest
final KotlinSourceSetTree getInstrumentedTest()
Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonInstrumentedTest' as the root SourceSet e.g. relevant for organising Android instrumented compilations/SourceSets
-
getIntegrationTest
final KotlinSourceSetTree getIntegrationTest()
Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonIntegrationTest' as root SourceSEt
-
-
-
-