Class CombinationDescriptor
- java.lang.Object
-
- org.junit.platform.engine.support.descriptor.AbstractTestDescriptor
-
- de.rwth.swc.coffee4j.junit.engine.descriptor.CombinationDescriptor
-
- All Implemented Interfaces:
org.junit.platform.engine.TestDescriptor
public class CombinationDescriptor extends org.junit.platform.engine.support.descriptor.AbstractTestDescriptorJUnit description of a combination during execution
-
-
Constructor Summary
Constructors Constructor Description CombinationDescriptor(org.junit.platform.engine.UniqueId id, String displayName, Method testMethod)Creates a newCombinationDescriptorwith the supplied parent,Combination, and display name
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.junit.platform.engine.TestDescriptor.TypegetType()-
Methods inherited from class org.junit.platform.engine.support.descriptor.AbstractTestDescriptor
addChild, equals, findByUniqueId, getChildren, getDisplayName, getParent, getSource, getTags, getUniqueId, hashCode, removeChild, removeFromHierarchy, setParent, toString
-
-
-
-
Constructor Detail
-
CombinationDescriptor
public CombinationDescriptor(org.junit.platform.engine.UniqueId id, String displayName, Method testMethod)Creates a newCombinationDescriptorwith the supplied parent,Combination, and display name- Parameters:
id- the unique id for the combinationdisplayName- the display name to settestMethod- the method which is responsible for executing the combination. This is done to enable the "Jump to Source" feature in many common IDEs
-
-