2015-04-23 13:24:15 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2024-02-11 20:04:04 +01:00
|
|
|
// Copyright (C) 2024 Equinor ASA
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
2015-04-23 13:24:15 +02:00
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
2015-04-23 13:24:15 +02:00
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2015-04-23 13:24:15 +02:00
|
|
|
// for more details.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
2024-02-11 20:04:04 +01:00
|
|
|
#include "RiaConsoleApplication.h"
|
|
|
|
|
|
|
|
|
|
#include <QLocale>
|
2015-04-23 13:24:15 +02:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 10:40:57 +02:00
|
|
|
///
|
2015-04-23 13:24:15 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 10:40:57 +02:00
|
|
|
int main( int argc, char** argv )
|
2015-04-23 13:24:15 +02:00
|
|
|
{
|
2024-02-11 20:04:04 +01:00
|
|
|
RiaApplication* app = new RiaConsoleApplication( argc, argv );
|
|
|
|
|
app->initialize();
|
2015-04-23 13:24:15 +02:00
|
|
|
|
2024-02-11 20:04:04 +01:00
|
|
|
QLocale::setDefault( QLocale( QLocale::English, QLocale::UnitedStates ) );
|
|
|
|
|
setlocale( LC_NUMERIC, "C" );
|
2015-04-23 13:24:15 +02:00
|
|
|
|
2024-02-11 20:04:04 +01:00
|
|
|
testing::InitGoogleTest( &argc, argv );
|
2015-04-23 13:24:15 +02:00
|
|
|
int result = RUN_ALL_TESTS();
|
|
|
|
|
return result;
|
|
|
|
|
}
|