| 1 | interface SortingInputsParams<T> { |
| 2 | algorithm(input: Array<T>): Array<T>; |
| 3 | test(testName: string, fn: unknown): void; |
| 4 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 5 | expect: any; |
| 6 | } |
| 7 | |
| 8 | function sortingInputs({ |
| 9 | algorithm, |
nothing calls this directly
no outgoing calls
no test coverage detected