X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/340da6aec02a5ec245cb6bd6018f3d46e27d8b76..a85ff267a8fc9b734908110cdac2c8a0ac71ce3d:/tests/streams/ffilestream.cpp?ds=sidebyside diff --git a/tests/streams/ffilestream.cpp b/tests/streams/ffilestream.cpp index 27108f4210..17a4e95ece 100644 --- a/tests/streams/ffilestream.cpp +++ b/tests/streams/ffilestream.cpp @@ -7,13 +7,9 @@ // Licence: wxWidgets licence /////////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(__APPLE__) - #pragma implementation - #pragma interface -#endif - // For compilers that support precompilation, includes "wx/wx.h". -#include "wx/wxprec.h" +// and "wx/cppunit.h" +#include "testprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -24,14 +20,10 @@ #include "wx/wx.h" #endif -#include "wx/cppunit.h" #include "wx/wfstream.h" #include "bstream.h" -using namespace std; -using namespace CppUnit; - #define DATABUFFER_SIZE 1024 static const wxString FILENAME_FFILEINSTREAM = _T("ffileinstream.test"); @@ -74,7 +66,7 @@ protected: private: // Implement base class functions. - virtual wxFFileInputStream *DoCreateInStream(); + virtual wxFFileInputStream *DoCreateInStream(); virtual wxFFileOutputStream *DoCreateOutStream(); virtual void DoDeleteOutStream(); @@ -84,7 +76,8 @@ private: ffileStream::ffileStream() { - /* Nothing extra */ + m_bSeekInvalidBeyondEnd = false; + m_bEofAtLastRead = false; } ffileStream::~ffileStream() @@ -94,14 +87,14 @@ ffileStream::~ffileStream() ::wxRemoveFile(FILENAME_FFILEOUTSTREAM); } -wxFFileInputStream *ffileStream::DoCreateInStream() -{ +wxFFileInputStream *ffileStream::DoCreateInStream() +{ wxFFileInputStream *pFileInStream = new wxFFileInputStream(GetInFileName()); CPPUNIT_ASSERT(pFileInStream->IsOk()); return pFileInStream; } wxFFileOutputStream *ffileStream::DoCreateOutStream() -{ +{ wxFFileOutputStream *pFileOutStream = new wxFFileOutputStream(FILENAME_FFILEOUTSTREAM); CPPUNIT_ASSERT(pFileOutStream->IsOk()); return pFileOutStream; @@ -123,7 +116,7 @@ wxString ffileStream::GetInFileName() const // Make sure we have a input file... char buf[DATABUFFER_SIZE]; wxFFileOutputStream out(FILENAME_FFILEINSTREAM); - + // Init the data buffer. for (size_t i = 0; i < DATABUFFER_SIZE; i++) buf[i] = (i % 0xFF);