Sha256: d3ec67f192b71d3f731a9d887a1ec7c3d298ec10fe87e513c6c45360f073d99b
Contents?: true
Size: 805 Bytes
Versions: 135
Compression:
Stored size: 805 Bytes
Contents
/* * 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. */ #include <strstream> #include "cppunit/cppunit_proxy.h" #if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES) using namespace std; #endif class StrstreamBufferReadTest : public CPPUNIT_NS::TestCase { CPPUNIT_TEST_SUITE(StrstreamBufferReadTest); CPPUNIT_TEST(readFromBuffer); CPPUNIT_TEST_SUITE_END(); protected: void readFromBuffer(); }; CPPUNIT_TEST_SUITE_REGISTRATION(StrstreamBufferReadTest); void StrstreamBufferReadTest::readFromBuffer() { char hello[] = "Hello"; strstream stream(hello, sizeof(hello), ios_base::in); char cur; stream >> cur; CPPUNIT_ASSERT(cur == 'H'); }
Version data entries
135 entries across 135 versions & 2 rubygems