Go to the source code of this file.
Definition at line 34 of file LoggingTests.cpp.
References EXPECT_EQ.
35 vector<HPACKHeader> headers;
36 headers.push_back(
HPACKHeader(
":path",
"index.html"));
37 headers.push_back(
HPACKHeader(
"content-type",
"gzip"));
40 EXPECT_EQ(out.str(),
":path: index.html\ncontent-type: gzip\n\n");
#define EXPECT_EQ(val1, val2)
Definition at line 43 of file LoggingTests.cpp.
References EXPECT_EQ, and proxygen::printDelta().
44 vector<HPACKHeader> v1;
46 v1.push_back(
HPACKHeader(
":host",
"www.facebook.com"));
47 vector<HPACKHeader> v2;
59 "\n - :host: www.facebook.com\n + :path: / (duplicate)\n");
#define EXPECT_EQ(val1, val2)
string printDelta(const vector< HPACKHeader > &v1, const vector< HPACKHeader > &v2)