We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb541c commit f291510Copy full SHA for f291510
main.cpp
@@ -2,11 +2,11 @@
2
#include <list>
3
4
#include "list/list.h"
5
-#include "tests/tests.h"
+#include "test/tests.h"
6
7
int main(int argc, char** argv) {
8
// int n = atoi(argv[1]);
9
- // std::cout << "std::list: " << PerformanceTest<std::list>::run(n) << " ms\n";
10
- // std::cout << "list: " << PerformanceTest<list>::run(n) << " ms\n";
11
- FunctionalityTests<list>::sort_list_test();
+ // std::cout << "std::list: " << Test::PerformanceTest<std::list>::run(n) << " ms\n";
+ // std::cout << "list: " << Test::PerformanceTest<list>::run(n) << " ms\n";
+ Test::FunctionalityTests<list>::test2();
12
}
tests/tests.h
0 commit comments