(expected: number[])
| 11 | describe('SortedList', () => { |
| 12 | let list: SortedList<number>; |
| 13 | function assertList(expected: number[]): void { |
| 14 | deepStrictEqual(Array.from(list.values()), expected); |
| 15 | } |
| 16 | |
| 17 | beforeEach(() => { |
| 18 | list = new SortedList<number>(e => e); |
no test coverage detected