public class TestCaseNode extends Object implements Comparable<TestCaseNode>
| Constructor and Description |
|---|
TestCaseNode() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(TestCase testCase) |
void |
addChildNode(TestCaseNode node) |
int |
compareTo(TestCaseNode o) |
boolean |
equals(Object o) |
void |
forEach(Consumer<TestCase> action) |
Set<TestCaseNode> |
getChildren() |
String |
getName() |
Set<TestCase> |
getTestCases() |
int |
hashCode() |
boolean |
remove(TestCase testCase) |
void |
setChildren(Set<TestCaseNode> children) |
void |
setName(String name) |
void |
setTestCases(Set<TestCase> testCases) |
int |
size() |
Stream<TestCase> |
stream() |
String |
toString() |
public String getName()
public void setName(String name)
public Set<TestCaseNode> getChildren()
public void setChildren(Set<TestCaseNode> children)
public void addChildNode(TestCaseNode node)
public void add(TestCase testCase)
public boolean remove(TestCase testCase)
public int size()
public int compareTo(TestCaseNode o)
compareTo in interface Comparable<TestCaseNode>Copyright © 2022. All rights reserved.