+} // anonymous namespace
+
+void ArraysTestCase::Swap()
+{
+ 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(6L, 28L, 496L, (wxArrayLong *)NULL);
+}
+