- separated corr type into (cpp/h) combo
[alexxy/gromacs-spacetimecorr.git] / src / spacetimecorrtests.cpp
1 #include <iostream>
2 #include "gtest/gtest.h"
3
4 int summary (int a, int b) {
5     return a + b;
6 }
7
8 TEST( test001, test001 )
9 {
10     ASSERT_EQ(15, summary(10, 5));
11 }
12
13 int main(int argc, char *argv[]) {
14     ::testing::InitGoogleTest( &argc, argv );
15     return RUN_ALL_TESTS();
16 }