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 TestSourceDynamicContainerTestDescriptor. testSourceMethods in org.junit.jupiter.engine.descriptor that return TestSource Modifier and Type Method Description (package private) static TestSourceTestFactoryTestDescriptor. 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 interfaceFileSystemSourceFile system basedTestSource.interfaceUriSourceATestSourcethat can be represented as aURI.Classes in org.junit.platform.engine.support.descriptor that implement TestSource Modifier and Type Class Description classClasspathResourceSourceClasspath resource basedTestSourcewith an optional position.classClassSourceClass basedTestSourcewith an optional file position.classCompositeTestSourceACompositeTestSourcecontains one or moreTestSources.(package private) classDefaultUriSourceDefault implementation ofUriSource.classDirectorySourceDirectory basedTestSource.classFileSourceFile basedTestSourcewith an optional position.classMethodSourceMethod basedTestSource.classPackageSourcePackage basedTestSource.Fields in org.junit.platform.engine.support.descriptor declared as TestSource Modifier and Type Field Description private TestSourceAbstractTestDescriptor. sourceFields in org.junit.platform.engine.support.descriptor with type parameters of type TestSource Modifier and Type Field Description private java.util.List<TestSource>CompositeTestSource. sourcesMethods 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 CompositeTestSourceCompositeTestSource. from(java.util.Collection<? extends TestSource> sources)Create a newCompositeTestSourcebased 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 newAbstractTestDescriptorwith 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 TestSourceTestIdentifier. sourceMethods 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(java.lang.String uniqueId, java.lang.String displayName, TestSource source, java.util.Set<TestTag> tags, TestDescriptor.Type type, java.lang.String parentId, java.lang.String legacyReportingName) -
Uses of TestSource in org.junit.vintage.engine.descriptor
Methods in org.junit.vintage.engine.descriptor that return TestSource Modifier and Type Method Description TestSourceTestSourceProvider. 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)
-