/proc/self/cwd/test/mocks/access_log/mocks.cc
Line | Count | Source (jump to first uncovered line) |
1 | | #include "test/mocks/access_log/mocks.h" |
2 | | |
3 | | #include "gmock/gmock.h" |
4 | | #include "gtest/gtest.h" |
5 | | |
6 | | using testing::_; |
7 | | using testing::Return; |
8 | | |
9 | | namespace Envoy { |
10 | | namespace AccessLog { |
11 | | |
12 | 30.1k | MockAccessLogFile::MockAccessLogFile() = default; |
13 | 30.1k | MockAccessLogFile::~MockAccessLogFile() = default; |
14 | | |
15 | 0 | MockFilter::MockFilter() = default; |
16 | 0 | MockFilter::~MockFilter() = default; |
17 | | |
18 | 30.1k | MockAccessLogManager::MockAccessLogManager() { |
19 | 30.1k | ON_CALL(*this, createAccessLog(_)).WillByDefault(Return(file_)); |
20 | 30.1k | } |
21 | | |
22 | 30.1k | MockAccessLogManager::~MockAccessLogManager() = default; |
23 | | |
24 | 1.19k | MockInstance::MockInstance() = default; |
25 | 1.19k | MockInstance::~MockInstance() = default; |
26 | | |
27 | | } // namespace AccessLog |
28 | | } // namespace Envoy |