mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06:00
25 lines
676 B
C++
25 lines
676 B
C++
#include "gtest/gtest.h"
|
|
|
|
#include "RiuSummaryVectorDescriptionMap.h"
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
TEST(RiuSummaryVectorDescriptionMap, TestInit)
|
|
{
|
|
{
|
|
std::string s("SRSFC");
|
|
auto test = RiuSummaryVectorDescriptionMap::instance()->fieldInfo(s);
|
|
|
|
EXPECT_TRUE(test == "Reach brine concentration");
|
|
}
|
|
|
|
{
|
|
std::string s("does not exist");
|
|
auto test = RiuSummaryVectorDescriptionMap::instance()->fieldInfo(s);
|
|
|
|
EXPECT_TRUE(test == s);
|
|
}
|
|
}
|