Starting from XCode 16, you will be able to use the new Swift Testing framework to test different arguments for the same test function. It's used like the following:
@Test(arguments: [10, 15, 20])
func insertionSortPerformance(length: Int) {
_ = insertionSort(arrLen: length)
}