strstream_test.cpp

来自「stl的源码」· C++ 代码 · 共 50 行

CPP
50
字号
#include <string>#if !defined (STLPORT) || !defined (_STLP_USE_NO_IOSTREAMS)#  include <strstream>#  include <limits>#  include "cppunit/cppunit_proxy.h"#  if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)using namespace std;#  endif//// TestCase class//class StrstreamTest : public CPPUNIT_NS::TestCase{  CPPUNIT_TEST_SUITE(StrstreamTest);  CPPUNIT_TEST(input);  CPPUNIT_TEST_SUITE_END();private:  void input();};CPPUNIT_TEST_SUITE_REGISTRATION(StrstreamTest);//// tests implementation//void StrstreamTest::input(){#  if defined (STLPORT) && defined (_STLP_LONG_LONG)  {    istrstream is("652208307");    _STLP_LONG_LONG rval = 0;    is >> rval;    CPPUNIT_ASSERT( rval == 652208307 );  }  {    istrstream is("-652208307");    _STLP_LONG_LONG rval = 0;    is >> rval;    CPPUNIT_ASSERT( rval == -652208307 );  }}#  endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?