@with_checker([int])
    def check_sort(list_of_ints):
        self.assertTrue(isinstance(list_of_ints, list))
        self.assertTrue(len(list) == len(qsort(list)))
        self.assertTrue(False)

I'm trying to run this, but it won't run, what is the problem?

有帮助吗?

解决方案

Test names must start with "test_"

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top