| 62 | namespace tests { |
| 63 | |
| 64 | MockResourceEstimator::MockResourceEstimator() |
| 65 | { |
| 66 | ON_CALL(*this, initialize(_)) |
| 67 | .WillByDefault(Return(Nothing())); |
| 68 | EXPECT_CALL(*this, initialize(_)) |
| 69 | .WillRepeatedly(DoDefault()); |
| 70 | |
| 71 | ON_CALL(*this, oversubscribable()) |
| 72 | .WillByDefault(Return(Future<Resources>())); |
| 73 | EXPECT_CALL(*this, oversubscribable()) |
| 74 | .WillRepeatedly(DoDefault()); |
| 75 | } |
| 76 | |
| 77 | |
| 78 | MockResourceEstimator::~MockResourceEstimator() {} |
nothing calls this directly
no test coverage detected