Package berlin.yuna.wiserjunit.model
Class TestCaseNode
- java.lang.Object
-
- berlin.yuna.wiserjunit.model.TestCaseNode
-
- All Implemented Interfaces:
Comparable<TestCaseNode>
public class TestCaseNode extends Object implements Comparable<TestCaseNode>
-
-
Constructor Summary
Constructors Constructor Description TestCaseNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(TestCase testCase)voidaddChildNode(TestCaseNode node)intcompareTo(TestCaseNode o)booleanequals(Object o)voidforEach(Consumer<TestCase> action)Set<TestCaseNode>getChildren()StringgetName()Set<TestCase>getTestCases()inthashCode()booleanremove(TestCase testCase)voidsetChildren(Set<TestCaseNode> children)voidsetName(String name)voidsetTestCases(Set<TestCase> testCases)intsize()Stream<TestCase>stream()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getChildren
public Set<TestCaseNode> getChildren()
-
setChildren
public void setChildren(Set<TestCaseNode> children)
-
addChildNode
public void addChildNode(TestCaseNode node)
-
add
public void add(TestCase testCase)
-
remove
public boolean remove(TestCase testCase)
-
size
public int size()
-
compareTo
public int compareTo(TestCaseNode o)
- Specified by:
compareToin interfaceComparable<TestCaseNode>
-
-