| 79 | |
| 80 | |
| 81 | MockQoSController::MockQoSController() |
| 82 | { |
| 83 | ON_CALL(*this, initialize(_)) |
| 84 | .WillByDefault(Return(Nothing())); |
| 85 | EXPECT_CALL(*this, initialize(_)) |
| 86 | .WillRepeatedly(DoDefault()); |
| 87 | |
| 88 | ON_CALL(*this, corrections()) |
| 89 | .WillByDefault( |
| 90 | Return(Future<list<mesos::slave::QoSCorrection>>())); |
| 91 | EXPECT_CALL(*this, corrections()) |
| 92 | .WillRepeatedly(DoDefault()); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | MockQoSController::~MockQoSController() {} |
nothing calls this directly
no test coverage detected