Object KotlinSourceSetTree.Companion
-
- All Implemented Interfaces:
public class KotlinSourceSetTree.Companion
-
-
Field Summary
Fields Modifier and Type Field Description private final KotlinSourceSetTree
main
private final KotlinSourceSetTree
test
private final KotlinSourceSetTree
unitTest
private final KotlinSourceSetTree
instrumentedTest
private final KotlinSourceSetTree
integrationTest
public final static KotlinSourceSetTree.Companion
INSTANCE
-
Method Summary
Modifier and Type Method Description final KotlinSourceSetTree
getMain()
The 'main' SourceSetTree. final KotlinSourceSetTree
getTest()
The 'test' SourceSetTree. final KotlinSourceSetTree
getUnitTest()
Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonUnitTest' as the root SourceSet e.g. final KotlinSourceSetTree
getInstrumentedTest()
Special pre-defined SourceSetTree: Can be used to introduce a new tree with 'commonInstrumentedTest' as the root SourceSet e.g. final KotlinSourceSetTree
getIntegrationTest()
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
-
-
-
-