mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3213 Observed data import. Add categories to vector table. Modify category identification. Update unit test
This commit is contained in:
@@ -10,14 +10,37 @@ TEST(RiuSummaryVectorDescriptionMap, TestInit)
|
||||
{
|
||||
{
|
||||
std::string s("SRSFC");
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->fieldInfo(s);
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->vectorInfo(s);
|
||||
|
||||
EXPECT_TRUE(test.category == RifEclipseSummaryAddress::SUMMARY_WELL_SEGMENT);
|
||||
EXPECT_TRUE(test.longName == "Reach brine concentration");
|
||||
}
|
||||
|
||||
{
|
||||
std::string s("SRSFC");
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->vectorLongName(s);
|
||||
|
||||
EXPECT_TRUE(test == "Reach brine concentration");
|
||||
}
|
||||
|
||||
{
|
||||
std::string s("does not exist");
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->fieldInfo(s);
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->vectorInfo(s);
|
||||
|
||||
EXPECT_TRUE(test.category == RifEclipseSummaryAddress::SUMMARY_INVALID);
|
||||
EXPECT_TRUE(test.longName == "");
|
||||
}
|
||||
|
||||
{
|
||||
std::string s("does not exist");
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->vectorLongName(s);
|
||||
|
||||
EXPECT_TRUE(test == "");
|
||||
}
|
||||
|
||||
{
|
||||
std::string s("does not exist");
|
||||
auto test = RiuSummaryVectorDescriptionMap::instance()->vectorLongName(s, true);
|
||||
|
||||
EXPECT_TRUE(test == s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user