Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / lib / 3rdparty / stlport / test / unit / advance_test.cpp
diff --git a/reactos/sdk/lib/3rdparty/stlport/test/unit/advance_test.cpp b/reactos/sdk/lib/3rdparty/stlport/test/unit/advance_test.cpp
deleted file mode 100644 (file)
index bd7a168..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#include <vector>
-#include <algorithm>
-
-#include "cppunit/cppunit_proxy.h"
-
-#if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
-using namespace std;
-#endif
-
-//
-// TestCase class
-//
-class AdvanceTest : public CPPUNIT_NS::TestCase
-{
-  CPPUNIT_TEST_SUITE(AdvanceTest);
-  CPPUNIT_TEST(adv);
-  CPPUNIT_TEST_SUITE_END();
-
-protected:
-  void adv();
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(AdvanceTest);
-
-//
-// tests implementation
-//
-void AdvanceTest::adv()
-{
-  typedef vector <int> IntVector;
-  IntVector v(10);
-  for (int i = 0; (size_t)i < v.size(); ++i)
-    v[i] = i;
-  IntVector::iterator location = v.begin();
-  CPPUNIT_ASSERT(*location==0);
-  advance(location, 5);
-  CPPUNIT_ASSERT(*location==5);
-}