RFT: Improve text import and make sure visibility based on date is working

Find candidate for the observation file name including measurement ID. Make sure that observations are filtered by date.
This commit is contained in:
Magne Sjaastad
2023-11-01 13:11:03 +01:00
parent 2069ad55cf
commit a61e62707b
2 changed files with 16 additions and 11 deletions

View File

@@ -65,7 +65,10 @@ TEST( RifReaderFmuRftTest, LoadFile )
std::vector<double> values;
reader.values( adr, &values );
// Two measurements per date
if ( adr.wellName() == "R_A2" ) EXPECT_EQ( 2u, values.size() );
// One date with 6 measurements
if ( adr.wellName() == "R_A6" ) EXPECT_EQ( 6u, values.size() );
if ( adr.wellName() == "R_A2" ) EXPECT_EQ( 4u, values.size() );
}
}