- separated corr type into (cpp/h) combo
[alexxy/gromacs-spacetimecorr.git] / src / spacetimecorrtests.cpp
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..a6a51c77213e35e59777376f262312289a45b479 100644 (file)
@@ -0,0 +1,16 @@
+#include <iostream>
+#include "gtest/gtest.h"
+
+int summary (int a, int b) {
+    return a + b;
+}
+
+TEST( test001, test001 )
+{
+    ASSERT_EQ(15, summary(10, 5));
+}
+
+int main(int argc, char *argv[]) {
+    ::testing::InitGoogleTest( &argc, argv );
+    return RUN_ALL_TESTS();
+}