mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
6b4484472b
svn-id: r18604
92 lines
1.7 KiB
C++
92 lines
1.7 KiB
C++
#include <cxxtest/TestSuite.h>
|
|
|
|
#include "common/stdafx.h"
|
|
#include "common/list.h"
|
|
|
|
class ListTestSuite : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
void test_isEmpty_clear( void )
|
|
{
|
|
Common::List<int> list;
|
|
TS_ASSERT( list.isEmpty() );
|
|
list.push_back(17);
|
|
list.push_back(33);
|
|
TS_ASSERT( !list.isEmpty() );
|
|
list.clear();
|
|
TS_ASSERT( list.isEmpty() );
|
|
}
|
|
|
|
void test_iterator( void )
|
|
{
|
|
Common::List<int> list;
|
|
Common::List<int>::iterator iter;
|
|
|
|
// Fill the list with some random data
|
|
list.push_back(17);
|
|
list.push_back(33);
|
|
list.push_back(-11);
|
|
|
|
// Iterate over the list and verify that we encounter the elements in
|
|
// the order we expect them to be.
|
|
|
|
iter = list.begin();
|
|
|
|
TS_ASSERT( *iter == 17 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
TS_ASSERT( *iter == 33 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
// Also test the postinc
|
|
TS_ASSERT( *iter == -11 );
|
|
iter++;
|
|
TS_ASSERT( iter == list.end() );
|
|
}
|
|
|
|
|
|
void test_insert( void )
|
|
{
|
|
Common::List<int> list;
|
|
Common::List<int>::iterator iter;
|
|
|
|
// Fill the list with some random data
|
|
list.push_back(17);
|
|
list.push_back(33);
|
|
list.push_back(-11);
|
|
|
|
// Iterate to after the second element
|
|
iter = list.begin();
|
|
++iter;
|
|
++iter;
|
|
|
|
// Now insert some values here
|
|
list.insert(iter, 42);
|
|
list.insert(iter, 43);
|
|
|
|
iter = list.begin();
|
|
|
|
TS_ASSERT( *iter == 17 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
TS_ASSERT( *iter == 33 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
TS_ASSERT( *iter == 42 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
TS_ASSERT( *iter == 43 );
|
|
++iter;
|
|
TS_ASSERT( iter != list.end() );
|
|
|
|
TS_ASSERT( *iter == -11 );
|
|
++iter;
|
|
TS_ASSERT( iter == list.end() );
|
|
}
|
|
};
|