Uses of Interface
org.junit.platform.engine.TestSource
-
Packages that use TestSource Package Description org.junit.platform.engine Public API for test engines.org.junit.platform.engine.support.descriptor TestDescriptor
-related support classes intended to be used by test engine implementations and clients of the launcher.org.junit.platform.launcher Public API for configuring and launching test plans. -
-
Uses of TestSource in org.junit.platform.engine
Methods in org.junit.platform.engine that return types with arguments of type TestSource Modifier and Type Method Description java.util.Optional<TestSource>
TestDescriptor. getSource()
Get the source of the test or container described by this descriptor, if available. -
Uses of TestSource in org.junit.platform.engine.support.descriptor
Subinterfaces of TestSource in org.junit.platform.engine.support.descriptor Modifier and Type Interface Description interface
FileSystemSource
File system basedTestSource
.interface
UriSource
ATestSource
that can be represented as aURI
.Classes in org.junit.platform.engine.support.descriptor that implement TestSource Modifier and Type Class Description class
ClasspathResourceSource
Classpath resource basedTestSource
with an optional position.class
ClassSource
Java class basedTestSource
with an optional position.class
CompositeTestSource
ACompositeTestSource
contains one or moreTestSources
.class
DirectorySource
Directory basedTestSource
.class
FileSource
File basedTestSource
with an optional position.class
MethodSource
Java method basedTestSource
.class
PackageSource
Package basedTestSource
.Methods in org.junit.platform.engine.support.descriptor that return types with arguments of type TestSource Modifier and Type Method Description java.util.Optional<TestSource>
AbstractTestDescriptor. getSource()
java.util.List<TestSource>
CompositeTestSource. getSources()
Get an immutable list of the sources stored in thisCompositeTestSource
.Method parameters in org.junit.platform.engine.support.descriptor with type arguments of type TestSource Modifier and Type Method Description static CompositeTestSource
CompositeTestSource. from(java.util.Collection<? extends TestSource> sources)
Create a newCompositeTestSource
based on the supplied collection ofsources
.Constructors in org.junit.platform.engine.support.descriptor with parameters of type TestSource Constructor Description AbstractTestDescriptor(UniqueId uniqueId, java.lang.String displayName, TestSource source)
Create a newAbstractTestDescriptor
with the suppliedUniqueId
, display name, and source. -
Uses of TestSource in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return types with arguments of type TestSource Modifier and Type Method Description java.util.Optional<TestSource>
TestIdentifier. getSource()
Get the source of the represented test or container, if available.
-