[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / 3rdparty / stlport / test / unit / strstream_buffer_read_test.cpp
diff --git a/reactos/lib/3rdparty/stlport/test/unit/strstream_buffer_read_test.cpp b/reactos/lib/3rdparty/stlport/test/unit/strstream_buffer_read_test.cpp
deleted file mode 100644 (file)
index 978ac0c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Note: Strstreams are really broken in STLport. But strstreams are 
- * obsolete, and even if ones was mentioned in D7.1--D7.4 of 
- * Standard, we have no wish to spent time with repair ones.
- */
-#if !defined (_STLP_NO_IOSTREAMS)
-#  include <strstream>
-
-#  include "cppunit/cppunit_proxy.h"
-
-#  if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
-using namespace std;
-#  endif
-
-class StrstreamBufferTest : public CPPUNIT_NS::TestCase
-{
-  CPPUNIT_TEST_SUITE(StrstreamBufferTest);
-  CPPUNIT_TEST(read_from_buffer);
-  CPPUNIT_TEST_SUITE_END();
-
-protected:
-  void read_from_buffer();
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(StrstreamBufferTest);
-
-void StrstreamBufferTest::read_from_buffer()
-{
-  char hello[] = "Hello";
-  strstream stream(hello, sizeof(hello), ios_base::in);
-  char cur;
-  stream >> cur;
-  CPPUNIT_ASSERT(cur == 'H'); 
-}
-#endif