Lines Matching refs:testRope
51 TestRope testRope, testRope2; in test_rope() local
54 while ( testRope.size() < ropeSize ) in test_rope()
57 testRope.push_back( x ); in test_rope()
60 WeakCheck( testRope, test_insert_one<TestRope>(testRope) ); in test_rope()
61 WeakCheck( testRope, test_insert_one<TestRope>(testRope, 0) ); in test_rope()
62 WeakCheck( testRope, test_insert_one<TestRope>(testRope, (int)testRope.size()) ); in test_rope()
64 WeakCheck( testRope, test_insert_n<TestRope>(testRope, random_number(random_base) ) ); in test_rope()
65 WeakCheck( testRope, test_insert_n<TestRope>(testRope, random_number(random_base), 0 ) ); in test_rope()
66 …WeakCheck( testRope, test_insert_n<TestRope>(testRope, random_number(random_base), (int)testRope.s… in test_rope()
71 WeakCheck( testRope, insert_range_tester(testRope, insFirst, insFirst+insCnt) ); in test_rope()
72 WeakCheck( testRope, insert_range_at_begin_tester(testRope, insFirst, insFirst+insCnt) ); in test_rope()
73 WeakCheck( testRope, insert_range_at_end_tester(testRope, insFirst, insFirst+insCnt) ); in test_rope()
78 WeakCheck( testRope, insert_range_tester(testRope, testRope2.begin(), testRope2.end() ) ); in test_rope()
80 WeakCheck( testRope, test_push_front<TestRope>(testRope) ); in test_rope()
81 WeakCheck( testRope, test_push_back<TestRope>(testRope) ); in test_rope()
93 ConstCheck( testRope, test_copy_construct<TestRope>() ); in test_rope()
95 WeakCheck( testRope, test_assign_op<TestRope>( testRope2 ) ); in test_rope()