Add temporary disabled Schedule::unique<UDQConfig>() test

This commit is contained in:
Joakim Hove 2021-02-04 11:09:32 +01:00
parent 3bc82e7a96
commit 08cb85e08e

View File

@ -2280,6 +2280,18 @@ TSTEP
auto fu_var1 = st.get("FU_VAR1");
BOOST_CHECK_EQUAL(fu_var1, 0);
}
/*
const auto& unique = schedule.unique<UDQConfig>();
BOOST_CHECK_EQUAL( unique.size(), 3 );
BOOST_CHECK_EQUAL( unique[0].first, 0 );
BOOST_CHECK_EQUAL( unique[1].first, 5 );
BOOST_CHECK_EQUAL( unique[2].first, 10 );
BOOST_CHECK( unique[0].second, schedule.getUDQConfig(0));
BOOST_CHECK( unique[1].second, schedule.getUDQConfig(5));
BOOST_CHECK( unique[2].second, schedule.getUDQConfig(10));
*/
}