test: add explicit assertions to all cpp test cases

Signed-off-by: Jaehyun Kim <[email protected]>
This commit is contained in:
Jaehyun Kim
2026-02-22 21:14:35 +09:00
parent 10104f85ea
commit a58d7e4cc6
9 changed files with 3188 additions and 66 deletions
+3
View File
@@ -405,10 +405,13 @@ TEST(EdgeStandaloneTest, ObjectIdx)
TEST(EdgeStandaloneTest, SetIsDisabledConstraint)
{
ASSERT_NO_THROW(( [&](){
Edge e;
e.setIsDisabledConstraint(true);
// Can only fully test when arc_set is set; test the setter at least
e.setIsDisabledConstraint(false);
}() ));
}
TEST(EdgeStandaloneTest, RemoveDelayAnnotated)