Home | History | Annotate | Download | only in http

Lines Matching defs:connection_

46     connection_ = std::make_shared<MockConnection>(transport_);
57 testing::Mock::VerifyAndClearExpectations(connection_.get());
58 connection_.reset();
65 std::shared_ptr<MockConnection> connection_;
135 nullptr)).WillOnce(Return(connection_));
137 EXPECT_CALL(*connection_, MockSetRequestData(ContainsStringData(req_body), _))
143 EXPECT_CALL(*connection_, FinishRequest(_)).WillOnce(Return(true));
164 EXPECT_CALL(*test->connection_, GetResponseStatusCode())
168 EXPECT_CALL(*test->connection_, GetResponseStatusText())
172 EXPECT_CALL(*test->connection_,
187 EXPECT_CALL(*connection_, MockExtractDataStream(_))
189 std::unique_ptr<Response> resp{new Response{connection_}};
196 .WillOnce(Return(connection_));
198 EXPECT_CALL(*connection_, FinishRequestAsync(_, _))