first commit
[synclust.git] / src / tests / main.c
CommitLineData
15d1825d
BA
1void connexityTests();
2void convexSolverTests();
3void dijkstraTests();
4void kmeansClusteringTests();
5void neighborsTests();
6
7// Main function calling all unit tests
8// If nothing gets printed, everything's OK
9int main()
10{
11 test_connexity1();
12 test_connexity2();
13
14 test_convexSolver1();
15 test_convexSolver2();
16
17 test_dijkstra1();
18 test_dijkstra2();
19
20 test_kmeansClustering1();
21 test_kmeansClustering2();
22
23 test_neighbors1();
24 test_neighbors2();
25
26 return 0;
27}