Lines Matching refs:b1
171 WriteBatch b1, b2; in TEST_F() local
172 WriteBatchInternal::SetSequence(&b1, 200); in TEST_F()
174 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
176 PrintContents(&b1)); in TEST_F()
177 ASSERT_EQ(0u, b1.Count()); in TEST_F()
179 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
181 PrintContents(&b1)); in TEST_F()
182 ASSERT_EQ(1u, b1.Count()); in TEST_F()
185 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
188 PrintContents(&b1)); in TEST_F()
189 ASSERT_EQ(2u, b1.Count()); in TEST_F()
191 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
196 PrintContents(&b1)); in TEST_F()
197 ASSERT_EQ(4u, b1.Count()); in TEST_F()
203 WriteBatchInternal::Append(&b1, &b2, /*wal only*/ true); in TEST_F()
211 PrintContents(&b1)); in TEST_F()
212 ASSERT_EQ(6u, b1.Count()); in TEST_F()