| 1 | void connexityTests(); |
| 2 | void convexSolverTests(); |
| 3 | void dijkstraTests(); |
| 4 | void kmeansClusteringTests(); |
| 5 | void neighborsTests(); |
| 6 | |
| 7 | // Main function calling all unit tests |
| 8 | // If nothing gets printed, everything's OK |
| 9 | int 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 | } |