(sessionID: string, testID: number, node: TestNode)
| 756 | return this.groupsById.set(`${sessionID}_${groupID}`, node); |
| 757 | } |
| 758 | public storeTest(sessionID: string, testID: number, node: TestNode) { |
| 759 | this.testsByName.set(node.name ?? SuiteData.unnamedItemMarker, node); |
| 760 | return this.testsById.set(`${sessionID}_${testID}`, node); |
| 761 | } |
| 762 | public reuseMatchingGroup(groupName: string | undefined): GroupNode | undefined { |
| 763 | return this.groupsByName.get(groupName ?? SuiteData.unnamedItemMarker); |
| 764 | } |