-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathtestMixedDimHydrostaticEquilibrium.cpp
More file actions
61 lines (56 loc) · 2.04 KB
/
testMixedDimHydrostaticEquilibrium.cpp
File metadata and controls
61 lines (56 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* ------------------------------------------------------------------------------------------------------------
* SPDX-License-Identifier: LGPL-2.1-only
*
* Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
* Copyright (c) 2018-2024 TotalEnergies
* Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
* Copyright (c) 2023-2024 Chevron
* Copyright (c) 2019- GEOS/GEOSX Contributors
* All rights reserved
* ------------------------------------------------------------------------------------------------------------
*/
/**
* @file testMixedDimHydrostaticEquilibrium.cpp
*
* Serial (single-rank) variant of the mixed-dimensional hydrostatic equilibrium test.
* Test fixture and TEST_P body live in testMixedDimHydrostaticEquilibriumFixture.hpp.
*/
#include "testMixedDimHydrostaticEquilibriumFixture.hpp"
CommandLineOptions g_commandLineOptions;
/**
* @brief Serial execution test cases (single rank, partition 1x1x1).
*/
INSTANTIATE_TEST_SUITE_P(
MixedDimHydrostaticEquilibriumSerialCases,
MixedDimHydrostaticEquilibriumTest,
::testing::Combine(
::testing::Values(
"fractured_mesh_tet_DFN_1.vtu",
"fractured_mesh_tet_DFN_123.vtu",
"fractured_wavy_mesh_tet_DFN_1.vtu",
"fractured_wavy_mesh_tet_DFN_123.vtu",
"fractured_full_span_mesh_hex_DFN_1.vtu",
"fractured_full_span_mesh_hex_DFN_123.vtu",
"fractured_full_span_mesh_tet_DFN_1.vtu",
"fractured_full_span_mesh_tet_DFN_123.vtu",
"t_shaped_wavy_mesh_hex_DFN_t1t2.vtu",
"t_shaped_wavy_mesh_tet_DFN_t1t2.vtu",
"y_shaped_wavy_mesh_hex_DFN_y1y2y3.vtu",
"y_shaped_wavy_mesh_tet_DFN_y1y2y3.vtu",
"DFN_5_fractures_hex_binarized.vtu",
"DFN_5_fractures_tet_binarized.vtu"
),
::testing::Values(
std::make_tuple( 1, 1, 1 )
)
)
);
int main( int argc, char * argv[] )
{
::testing::InitGoogleTest( &argc, argv );
g_commandLineOptions = *geos::basicSetup( argc, argv, false );
int result = RUN_ALL_TESTS();
geos::basicCleanup();
return result;
}