aboutsummaryrefslogtreecommitdiff
path: root/test/common/list.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2006-05-26 17:18:23 +0000
committerWillem Jan Palenstijn2006-05-26 17:18:23 +0000
commit20c4be47a39b6d8e7bb1587a8a4630bb2e620f54 (patch)
treed5a172294163c0f50f923dded096d3d40937bcf5 /test/common/list.h
parentda7140c3cf1df275aabd79bcd7725bf020f84643 (diff)
downloadscummvm-rg350-20c4be47a39b6d8e7bb1587a8a4630bb2e620f54.tar.gz
scummvm-rg350-20c4be47a39b6d8e7bb1587a8a4630bb2e620f54.tar.bz2
scummvm-rg350-20c4be47a39b6d8e7bb1587a8a4630bb2e620f54.zip
add functions for reverse iteration of Common::List
svn-id: r22665
Diffstat (limited to 'test/common/list.h')
-rw-r--r--test/common/list.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/common/list.h b/test/common/list.h
index 31ff7af399..26709b061b 100644
--- a/test/common/list.h
+++ b/test/common/list.h
@@ -103,4 +103,47 @@ class ListTestSuite : public CxxTest::TestSuite
++iter;
TS_ASSERT( iter == container.end() );
}
+
+ void test_reverse( void )
+ {
+ Common::List<int> container;
+ Common::List<int>::iterator iter;
+
+ // Fill the container with some random data
+ container.push_back(17);
+ container.push_back(33);
+ container.push_back(-11);
+
+ iter = container.reverse_begin();
+ TS_ASSERT( iter != container.end() );
+
+
+ TS_ASSERT( *iter == -11 );
+ --iter;
+ TS_ASSERT( iter != container.end() );
+
+ TS_ASSERT( *iter == 33 );
+ --iter;
+ TS_ASSERT( iter != container.end() );
+
+ TS_ASSERT( *iter == 17 );
+ --iter;
+ TS_ASSERT( iter == container.end() );
+
+ iter = container.reverse_begin();
+
+ iter = container.reverse_erase(iter);
+ TS_ASSERT( iter != container.end() );
+ TS_ASSERT( *iter == 33 );
+
+ iter = container.reverse_erase(iter);
+ TS_ASSERT( iter != container.end() );
+ TS_ASSERT( *iter == 17 );
+
+ iter = container.reverse_erase(iter);
+ TS_ASSERT( iter == container.end() );
+
+ TS_ASSERT( container.begin() == container.end() );
+ TS_ASSERT( container.reverse_begin() == container.end() );
+ }
};