(sessionID: string, id: number)
| 746 | return this.testsById.get(`${sessionID}_${id}`); |
| 747 | } |
| 748 | public getMyGroup(sessionID: string, id: number): GroupNode | undefined { |
| 749 | return this.groupsById.get(`${sessionID}_${id}`); |
| 750 | } |
| 751 | public getMyTest(sessionID: string, id: number): TestNode | undefined { |
| 752 | return this.testsById.get(`${sessionID}_${id}`); |
| 753 | } |
no test coverage detected