Uses of Interface
org.junit.platform.engine.TestSource
-
Packages that use TestSource Package Description org.junit.jupiter.engine.descriptor Test descriptors used within the JUnit Jupiter test engine.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.org.junit.vintage.engine.descriptor Test descriptors used within the JUnit Vintage test engine. -
-
Uses of TestSource in org.junit.jupiter.engine.descriptor
Fields in org.junit.jupiter.engine.descriptor declared as TestSource Modifier and Type Field Description private TestSource
DynamicContainerTestDescriptor. testSource
Methods in org.junit.jupiter.engine.descriptor that return TestSource Modifier and Type Method Description (package private) static TestSource
TestFactoryTestDescriptor. fromUri(java.net.URI uri)
Methods in org.junit.jupiter.engine.descriptor with parameters of type TestSource Modifier and Type Method Description (package private) static java.util.Optional<JupiterTestDescriptor>
TestFactoryTestDescriptor. createDynamicDescriptor(JupiterTestDescriptor parent, DynamicNode node, int index, TestSource defaultTestSource, DynamicDescendantFilter dynamicDescendantFilter, JupiterConfiguration configuration)
Constructors in org.junit.jupiter.engine.descriptor with parameters of type TestSource Constructor Description DynamicContainerTestDescriptor(UniqueId uniqueId, int index, DynamicContainer dynamicContainer, TestSource testSource, DynamicDescendantFilter dynamicDescendantFilter, JupiterConfiguration configuration)
DynamicNodeTestDescriptor(UniqueId uniqueId, int index, DynamicNode dynamicNode, TestSource testSource, JupiterConfiguration configuration)
DynamicTestTestDescriptor(UniqueId uniqueId, int index, DynamicTest dynamicTest, TestSource source, JupiterConfiguration configuration)
JupiterTestDescriptor(UniqueId uniqueId, java.lang.reflect.AnnotatedElement element, java.util.function.Supplier<java.lang.String> displayNameSupplier, TestSource source, JupiterConfiguration configuration)
JupiterTestDescriptor(UniqueId uniqueId, java.lang.String displayName, TestSource source, JupiterConfiguration configuration)
-
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
Class basedTestSource
with an optional file position.class
CompositeTestSource
ACompositeTestSource
contains one or moreTestSources
.(package private) class
DefaultUriSource
Default implementation ofUriSource
.class
DirectorySource
Directory basedTestSource
.class
FileSource
File basedTestSource
with an optional position.class
MethodSource
Method basedTestSource
.class
PackageSource
Package basedTestSource
.Fields in org.junit.platform.engine.support.descriptor declared as TestSource Modifier and Type Field Description private TestSource
AbstractTestDescriptor. source
Fields in org.junit.platform.engine.support.descriptor with type parameters of type TestSource Modifier and Type Field Description private java.util.List<TestSource>
CompositeTestSource. sources
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.Constructor parameters in org.junit.platform.engine.support.descriptor with type arguments of type TestSource Constructor Description CompositeTestSource(java.util.Collection<? extends TestSource> sources)
-
Uses of TestSource in org.junit.platform.launcher
Fields in org.junit.platform.launcher declared as TestSource Modifier and Type Field Description private TestSource
TestIdentifier.SerializedForm. source
private TestSource
TestIdentifier. source
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.Constructors in org.junit.platform.launcher with parameters of type TestSource Constructor Description TestIdentifier(UniqueId uniqueId, java.lang.String displayName, TestSource source, java.util.Set<TestTag> tags, TestDescriptor.Type type, UniqueId parentId, java.lang.String legacyReportingName)
-
Uses of TestSource in org.junit.vintage.engine.descriptor
Fields in org.junit.vintage.engine.descriptor declared as TestSource Modifier and Type Field Description private static TestSource
TestSourceProvider. NULL_SOURCE
Fields in org.junit.vintage.engine.descriptor with type parameters of type TestSource Modifier and Type Field Description private java.util.Map<org.junit.runner.Description,TestSource>
TestSourceProvider. testSourceCache
Methods in org.junit.vintage.engine.descriptor that return TestSource Modifier and Type Method Description private TestSource
TestSourceProvider. computeTestSource(org.junit.runner.Description description)
TestSource
TestSourceProvider. findTestSource(org.junit.runner.Description description)
Constructors in org.junit.vintage.engine.descriptor with parameters of type TestSource Constructor Description VintageTestDescriptor(UniqueId uniqueId, org.junit.runner.Description description, java.lang.String displayName, TestSource source)
VintageTestDescriptor(UniqueId uniqueId, org.junit.runner.Description description, TestSource source)
-