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