9 #ifndef _FLEXARRAY_TEST_H_
10 #define _FLEXARRAY_TEST_H_
15 #include <cxxtest/TestSuite.h>
32 TS_ASSERT_EQUALS( array.
size(), 0U );
34 TS_ASSERT_EQUALS( array.
size(), 1U );
36 TS_ASSERT_EQUALS( array.
size(), 2U );
40 #endif // _FLEXARRAY_TEST_H
void push(T item)
Definition: FlexArray.h:160
void testPush(void)
FlexArray Test - heap-allocated storage.
Definition: FlexArray_Test.h:27
Contains the FlexArrayBase and FlexArray class declarations.
unsigned int size() const
Definition: FlexArray.cpp:69
Replacement for standard template class string.
Definition: Str.h:12
Units tests for class FlexArray
Definition: FlexArray_Test.h:22