Lines Matching refs:begin
143 /** Testing CircularQueue::begin(), CircularQueue::end()
145 * - In an empty queue, begin() == end()
146 * - After pushing some elements in the queue, the begin()
155 ASSERT_EQ(cq.begin(), cq.end());
164 ASSERT_EQ(cq.begin() + 2, cq.end());
167 /** Testing that begin() and end() (-1) iterators
183 ASSERT_EQ(*(cq.begin()), cq.front());
202 auto it_1 = cq.begin();
203 auto it_2 = cq.begin() + 1;
204 auto it_3 = cq.begin() - negative_offset;
242 auto starting_it = cq.begin();
252 * - Difference between begin() and end() iterator is still
266 auto starting_it = cq.begin();