Add image to simplex conversion code
[libstick.git] / tests / main.cc
index 6016b3b511c6c2e707186bfe085c98f4526e0432..dcf0abeeb978a5d5798e4575ec8a669ab70543d6 100644 (file)
@@ -4,6 +4,7 @@
 #include "booleanmatrix.h"
 #include "simplicialcomplex.h"
 #include "persistence.h"
+#include "image.h"
 
 using namespace std;
 
@@ -17,6 +18,7 @@ int main(int argc, char* argv[]) {
     ts.add(auto_ptr<Test::Suite>(new boolean_matrix_TestSuite));
     ts.add(auto_ptr<Test::Suite>(new simplicial_complex_TestSuite));
     ts.add(auto_ptr<Test::Suite>(new persistence_TestSuite));
+    ts.add(auto_ptr<Test::Suite>(new image_TestSuite));
 
     Test::TextOutput output(Test::TextOutput::Verbose);
     if (ts.run(output))