WX_DECLARE_OBJARRAY(Bar, ArrayBars);
#include "wx/arrimpl.cpp"
-WX_DEFINE_OBJARRAY(ArrayBars);
+WX_DEFINE_OBJARRAY(ArrayBars)
// ----------------------------------------------------------------------------
// helpers for sorting arrays and comparing items
typedef unsigned short ushort;
-DEFINE_COMPARE(Char, char);
-DEFINE_COMPARE(UShort, ushort);
-DEFINE_COMPARE(Int, int);
+DEFINE_COMPARE(Char, char)
+DEFINE_COMPARE(UShort, ushort)
+DEFINE_COMPARE(Int, int)
WX_DEFINE_ARRAY_CHAR(char, wxArrayChar);
WX_DEFINE_SORTED_ARRAY_CHAR(char, wxSortedArrayCharNoCmp);
_T("a") ,
_T("a") ,
_T("a") ) );
+
+ a5.assign(a1.end(), a1.end());
+ CPPUNIT_ASSERT( a5.empty() );
+
+ a5.assign(a1.begin(), a1.end());
+ CPPUNIT_ASSERT( a5 == a1 );
+
+#ifdef wxHAS_VECTOR_TEMPLATE_ASSIGN
+ const wxString months[] = { "Jan", "Feb", "Mar" };
+ a5.assign(months, months + WXSIZEOF(months));
+ CPPUNIT_ASSERT_EQUAL( WXSIZEOF(months), a5.size() );
+ CPPUNIT_ASSERT( COMPARE_3_VALUES(a5, "Jan", "Feb", "Mar") );
+#endif // wxHAS_VECTOR_TEMPLATE_ASSIGN
}
void ArraysTestCase::wxStringArraySplitTest()
CPPUNIT_ASSERT( b.Index( 17 ) == 3 ); \
}
-TestArrayOf(UShort);
+TestArrayOf(UShort)
-TestArrayOf(Char);
+TestArrayOf(Char)
-TestArrayOf(Int);
+TestArrayOf(Int)
void ArraysTestCase::Alloc()
{
{
DoTestSwap("Foo", "Bar", "Baz", (wxArrayString *)NULL);
- // VC6 can't compile this call with mysterious error about in DoTestSwap()
-#ifndef __VISUALC6__
DoTestSwap(1, 10, 100, (wxArrayInt *)NULL);
-#endif
-
DoTestSwap(6, 28, 496, (wxArrayLong *)NULL);
}