Files
ResInsight/ThirdParty/NRLib/well_UnitTests/well_UnitTests.cpp
2015-09-14 09:02:27 +02:00

21 lines
475 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;
}