diff options
Diffstat (limited to 'test/common/array.h')
-rw-r--r-- | test/common/array.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/common/array.h b/test/common/array.h index 65f5bff490..f83c3bf0ea 100644 --- a/test/common/array.h +++ b/test/common/array.h @@ -6,15 +6,15 @@ class ArrayTestSuite : public CxxTest::TestSuite { public: - void test_isEmpty_clear( void ) + void test_empty_clear( void ) { Common::Array<int> array; - TS_ASSERT( array.isEmpty() ); + TS_ASSERT( array.empty() ); array.push_back(17); array.push_back(33); - TS_ASSERT( !array.isEmpty() ); + TS_ASSERT( !array.empty() ); array.clear(); - TS_ASSERT( array.isEmpty() ); + TS_ASSERT( array.empty() ); } void test_iterator( void ) |