Line | Count | Source (jump to first uncovered line) |
1 | #include "guard_dog.h" | |
2 | ||
3 | #include "gmock/gmock.h" | |
4 | #include "gtest/gtest.h" | |
5 | ||
6 | namespace Envoy { | |
7 | namespace Server { | |
8 | ||
9 | using ::testing::_; | |
10 | using ::testing::NiceMock; | |
11 | using ::testing::Return; | |
12 | ||
13 | 0 | MockGuardDog::MockGuardDog() : watch_dog_(new NiceMock<MockWatchDog>()) { |
14 | 0 | ON_CALL(*this, createWatchDog(_, _, _)).WillByDefault(Return(watch_dog_)); |
15 | 0 | } |
16 | ||
17 | 0 | MockGuardDog::~MockGuardDog() = default; |
18 | ||
19 | } // namespace Server | |
20 | } // namespace Envoy |