()
| 229 | } |
| 230 | |
| 231 | func main() { |
| 232 | num := 5000 |
| 233 | test_func(num, bubbleSort) |
| 234 | test_func(num, selectionSort) |
| 235 | test_func(num, insertionSort) |
| 236 | test_func(num, shellSort) |
| 237 | test_func(num, mergeSort) |
| 238 | test_func(num, quickSort) |
| 239 | test_func(num, heapSort) |
| 240 | } |
nothing calls this directly
no test coverage detected