ResInsight/ThirdParty/NRLib/well_UnitTests/well_UnitTests.cpp

20 lines
474 B
C++
Raw Normal View History

2015-09-14 02:02:27 -05:00
#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;
}