-
Notifications
You must be signed in to change notification settings - Fork 30
Item tree key
Ivan edited this page Dec 1, 2019
·
2 revisions
ItemTreeKey is a key for TestItemTree(wiki) and TestItemLeaf(wiki) items mapping. It contains name
and hash
fields:
private final String name;
private final int hash;
ItemTreeKey
instance can be created using one of methods:
1. public static ItemTreeKey of(String name) {
return new ItemTreeKey(name);
}
2. public static ItemTreeKey of(String name, int hash) {
return new ItemTreeKey(name, hash);
}
Method #2 allows to provide hash
(generated by agent) to prevent clashing ItemTreeKeys
created for different TestItems
with the same names.
- Callback reporting
- Nested steps
- Test item attributes
- Test case ID
- Multi-poccess execution