Unverified Commit 02562103 authored by Ram Kumar K R's avatar Ram Kumar K R Committed by GitHub
Browse files

Update example to reflect the tests below

parent 6b74da47
...@@ -274,8 +274,8 @@ First, define a fixture class. By convention, you should give it the name ...@@ -274,8 +274,8 @@ First, define a fixture class. By convention, you should give it the name
class QueueTest : public ::testing::Test { class QueueTest : public ::testing::Test {
protected: protected:
void SetUp() override { void SetUp() override {
q0_.Enqueue(1); q1_.Enqueue(1);
q1_.Enqueue(2); q2_.Enqueue(2);
q2_.Enqueue(3); q2_.Enqueue(3);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment