mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3770 Import perforations. Add RifPerforationIntervalReaderTest
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "RiaTestDataDirectory.h"
|
||||
|
||||
#include "RifPerforationIntervalReader.h"
|
||||
|
||||
#include <cmath> // Needed for HUGE_VAL on Linux
|
||||
#include <numeric>
|
||||
|
||||
static const QString TEST_DATA_DIRECTORY = QString("%1/RifPerforationIntervalReader/").arg(TEST_DATA_DIR);
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
TEST(RifPerforationIntervalReaderTest, SpacesInWellNameHandledSuccessfully)
|
||||
{
|
||||
std::map<QString, std::vector<RifPerforationInterval> >
|
||||
perforationIntervals = RifPerforationIntervalReader::readPerforationIntervals(TEST_DATA_DIRECTORY + "perforations_with_space_after_well_name.ev");
|
||||
|
||||
EXPECT_EQ(10, perforationIntervals["A1_RI_HZX"].size());
|
||||
}
|
||||
Reference in New Issue
Block a user