Home | History | Annotate | Download | only in unit

Lines Matching defs:at

2 //into account (at least using GCC 4.0.1)
24 CPPUNIT_TEST(at);
39 void at();
104 //Insertion at end:
137 //Insertion of several elements at end:
157 void DequeTest::at() {
162 CPPUNIT_ASSERT( d.at(0) == 10 );
163 d.at(0) = 20;
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
169 d.at(1) = 20;