| 9 | #include "fields2cover/objectives/pp_obj/pp_objective.h" |
| 10 | |
| 11 | TEST(fields2cover_obj_pp_obj, isMinimizing) { |
| 12 | f2c::obj::PPObjective obj; |
| 13 | EXPECT_TRUE(obj.isMinimizing()); |
| 14 | EXPECT_FALSE(obj.isMaximizing()); |
| 15 | } |
| 16 |
nothing calls this directly
no test coverage detected