ResInsight/ThirdParty/custom-opm-common/custom-opm-parser-tests/opm-parser_UnitTests.cpp
2020-11-16 11:34:09 +01:00

20 lines
474 B
C++

#include "gtest/gtest.h"
#include <stdio.h>
#include <iostream>
#include <string>
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
int main(int argc, char **argv)
{
testing::InitGoogleTest(&argc, argv);
int result = RUN_ALL_TESTS();
char text[5];
std::cin.getline(text, 5);
return result;
}