| 75 | }; |
| 76 | |
| 77 | TEST_F(PrefixSortAlgorithmTest, quickSort) { |
| 78 | testQuickSort(PrefixSortRunner::kSmallSort - 1); |
| 79 | testQuickSort(PrefixSortRunner::kSmallSort); |
| 80 | testQuickSort(PrefixSortRunner::kSmallSort + 1); |
| 81 | testQuickSort(PrefixSortRunner::kMediumSort); |
| 82 | // Any number bigger than kMediumSort is sufficient for testing. |
| 83 | testQuickSort(PrefixSortRunner::kMediumSort + 1000); |
| 84 | } |
| 85 | |
| 86 | TEST_F(PrefixSortAlgorithmTest, testingMedian3) { |
| 87 | // Generate 3 elements randomly as input data. |
nothing calls this directly
no test coverage detected