| 9 | #include "fields2cover/objectives/decomp_obj/decomp_objective.h" |
| 10 | |
| 11 | TEST(fields2cover_obj_decomp_obj, computeCost) { |
| 12 | f2c::obj::DecompObjective obj; |
| 13 | F2CCells cells; |
| 14 | EXPECT_EQ(obj.computeCost(cells), 0.0); |
| 15 | EXPECT_TRUE(obj.isMinimizing()); |
| 16 | EXPECT_FALSE(obj.isMaximizing()); |
| 17 | } |
| 18 |
nothing calls this directly
no test coverage detected