Skip to content

Commit

Permalink
test: Remove declared but undefined class methods (#4297)
Browse files Browse the repository at this point in the history
Signed-off-by: Randy Smith <[email protected]>
  • Loading branch information
curiouserrandy authored and ggreenway committed Sep 4, 2018
1 parent 1485a13 commit 0b7e3b5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions test/integration/integration.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ class BaseIntegrationTest : Logger::Loggable<Logger::Id::testing> {
const std::string& config = ConfigHelper::HTTP_PROXY_CONFIG);
virtual ~BaseIntegrationTest() {}

void SetUp();

// Initialize the basic proto configuration, create fake upstreams, and start Envoy.
virtual void initialize();
// Set up the fake upstream connections. This is called by initialize() and
Expand Down Expand Up @@ -205,8 +203,6 @@ class BaseIntegrationTest : Logger::Loggable<Logger::Id::testing> {
bool enable_half_close_{false};

private:
// The codec type for the client-to-Envoy connection
Http::CodecClient::Type downstream_protocol_{Http::CodecClient::Type::HTTP1};
// The type for the Envoy-to-backend connection
FakeHttpConnection::Type upstream_protocol_{FakeHttpConnection::Type::HTTP1};
// True if initialized() has been called.
Expand Down
1 change: 0 additions & 1 deletion test/integration/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ class IntegrationTestServer : Logger::Loggable<Logger::Id::testing>,
}
void start(const Network::Address::IpVersion version,
std::function<void()> pre_worker_start_test_steps, bool deterministic);
void start();

void waitForCounterGe(const std::string& name, uint64_t value) override {
while (counter(name) == nullptr || counter(name)->value() < value) {
Expand Down

0 comments on commit 0b7e3b5

Please sign in to comment.