main.cc 134 Bytes
Newer Older
1
2
3
4
5
6
7
8
#include "utils_test.h"

int main(int argc, char *argv[]) {
    int failed = 0;
    failed += test_rearrange();

    return failed;
}