mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
19 lines
479 B
C++
19 lines
479 B
C++
#include "gtest/gtest.h"
|
|
|
|
#include <opm/flowdiagnostics/CellSet.hpp>
|
|
#include <opm/utility/graph/AssembledConnections.hpp>
|
|
#include <opm/utility/ECLGraph.hpp>
|
|
|
|
TEST(opm_flowdiagnostics_test, basic_construction)
|
|
{
|
|
auto g = Opm::AssembledConnections{};
|
|
auto s = Opm::FlowDiagnostics::CellSet{};
|
|
try {
|
|
auto eg = Opm::ECLGraph::load("hei", "hopp");
|
|
}
|
|
catch(const std::exception& e)
|
|
{
|
|
std::cerr << "Caught exception: " << e.what() << '\n';
|
|
}
|
|
}
|