]> Creatis software - clitk.git/blobdiff - tests/vv/vvMainTest.cxx
tests with google tests coupled with cdash reporting
[clitk.git] / tests / vv / vvMainTest.cxx
diff --git a/tests/vv/vvMainTest.cxx b/tests/vv/vvMainTest.cxx
new file mode 100644 (file)
index 0000000..0efcdef
--- /dev/null
@@ -0,0 +1,8 @@
+#include "gtest/gtest.h"
+#include <iostream>
+#include <QApplication>
+int main(int argc, char** argv){
+  QApplication* q=new QApplication ( argc, argv );
+  ::testing::InitGoogleTest(&argc, argv);
+  return RUN_ALL_TESTS();
+}