From bfca3e895c8194dad2a242404321feb0346d8cc9 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 26 Jun 2017 16:21:36 +0200 Subject: [PATCH] Moved integration tests. --- src/opm/parser/eclipse/CMakeLists.txt | 2 +- .../IntegrationTests => tests/parser/integration}/BoxTest.cpp | 0 .../parser/integration}/CMakeLists.txt | 0 .../parser/integration}/CheckDeckValidity.cpp | 0 .../parser/integration}/CompletionsFromDeck.cpp | 0 .../parser/integration}/EclipseGridCreateFromDeck.cpp | 0 .../parser/integration}/IOConfigIntegrationTest.cpp | 0 .../parser/integration}/IncludeTest.cpp | 0 .../parser/integration}/IntegrationTests.cpp | 0 .../IntegrationTests => tests/parser/integration}/NNCTests.cpp | 0 .../parser/integration}/ParseDATAWithDefault.cpp | 0 .../parser/integration}/ParseKEYWORD.cpp | 0 .../IntegrationTests => tests/parser/integration}/Polymer.cpp | 0 .../parser/integration}/ResinsightTest.cpp | 0 .../parser/integration}/ScheduleCreateFromDeck.cpp | 0 .../parser/integration}/TransMultIntegrationTests.cpp | 0 16 files changed, 1 insertion(+), 1 deletion(-) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/BoxTest.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/CMakeLists.txt (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/CheckDeckValidity.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/CompletionsFromDeck.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/EclipseGridCreateFromDeck.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/IOConfigIntegrationTest.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/IncludeTest.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/IntegrationTests.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/NNCTests.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/ParseDATAWithDefault.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/ParseKEYWORD.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/Polymer.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/ResinsightTest.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/ScheduleCreateFromDeck.cpp (100%) rename {src/opm/parser/eclipse/IntegrationTests => tests/parser/integration}/TransMultIntegrationTests.cpp (100%) diff --git a/src/opm/parser/eclipse/CMakeLists.txt b/src/opm/parser/eclipse/CMakeLists.txt index 81170d454..c0349c6fb 100644 --- a/src/opm/parser/eclipse/CMakeLists.txt +++ b/src/opm/parser/eclipse/CMakeLists.txt @@ -278,7 +278,7 @@ foreach (test BoxTest ScheduleCreateFromDeck TransMultIntegrationTests ) - add_executable(${test} IntegrationTests/${test}.cpp) + add_executable(${test} tests/integration/${test}.cpp) target_link_libraries(${test} opmparser boost_test) add_test(NAME ${test} COMMAND ${test} ${_testdir}/integration_tests/) endforeach () diff --git a/src/opm/parser/eclipse/IntegrationTests/BoxTest.cpp b/tests/parser/integration/BoxTest.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/BoxTest.cpp rename to tests/parser/integration/BoxTest.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/CMakeLists.txt b/tests/parser/integration/CMakeLists.txt similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/CMakeLists.txt rename to tests/parser/integration/CMakeLists.txt diff --git a/src/opm/parser/eclipse/IntegrationTests/CheckDeckValidity.cpp b/tests/parser/integration/CheckDeckValidity.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/CheckDeckValidity.cpp rename to tests/parser/integration/CheckDeckValidity.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/CompletionsFromDeck.cpp b/tests/parser/integration/CompletionsFromDeck.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/CompletionsFromDeck.cpp rename to tests/parser/integration/CompletionsFromDeck.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/EclipseGridCreateFromDeck.cpp b/tests/parser/integration/EclipseGridCreateFromDeck.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/EclipseGridCreateFromDeck.cpp rename to tests/parser/integration/EclipseGridCreateFromDeck.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/IOConfigIntegrationTest.cpp b/tests/parser/integration/IOConfigIntegrationTest.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/IOConfigIntegrationTest.cpp rename to tests/parser/integration/IOConfigIntegrationTest.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/IncludeTest.cpp b/tests/parser/integration/IncludeTest.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/IncludeTest.cpp rename to tests/parser/integration/IncludeTest.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/IntegrationTests.cpp b/tests/parser/integration/IntegrationTests.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/IntegrationTests.cpp rename to tests/parser/integration/IntegrationTests.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/NNCTests.cpp b/tests/parser/integration/NNCTests.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/NNCTests.cpp rename to tests/parser/integration/NNCTests.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/ParseDATAWithDefault.cpp b/tests/parser/integration/ParseDATAWithDefault.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/ParseDATAWithDefault.cpp rename to tests/parser/integration/ParseDATAWithDefault.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/ParseKEYWORD.cpp b/tests/parser/integration/ParseKEYWORD.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/ParseKEYWORD.cpp rename to tests/parser/integration/ParseKEYWORD.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/Polymer.cpp b/tests/parser/integration/Polymer.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/Polymer.cpp rename to tests/parser/integration/Polymer.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/ResinsightTest.cpp b/tests/parser/integration/ResinsightTest.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/ResinsightTest.cpp rename to tests/parser/integration/ResinsightTest.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/ScheduleCreateFromDeck.cpp b/tests/parser/integration/ScheduleCreateFromDeck.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/ScheduleCreateFromDeck.cpp rename to tests/parser/integration/ScheduleCreateFromDeck.cpp diff --git a/src/opm/parser/eclipse/IntegrationTests/TransMultIntegrationTests.cpp b/tests/parser/integration/TransMultIntegrationTests.cpp similarity index 100% rename from src/opm/parser/eclipse/IntegrationTests/TransMultIntegrationTests.cpp rename to tests/parser/integration/TransMultIntegrationTests.cpp