X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..a523d3c64391034906973857908bdf1d3a82d0cb:/tests/streams/tempfile.cpp diff --git a/tests/streams/tempfile.cpp b/tests/streams/tempfile.cpp index bd1d3e29ee..560127464b 100644 --- a/tests/streams/tempfile.cpp +++ b/tests/streams/tempfile.cpp @@ -4,7 +4,7 @@ // Author: Mike Wetherell // RCS-ID: $Id$ // Copyright: (c) 2005 Mike Wetherell -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #include "testprec.h" @@ -24,29 +24,7 @@ #if wxUSE_STREAMS && wxUSE_FILE - -/////////////////////////////////////////////////////////////////////////////// -// Self deleting test file - -class TestFile -{ -public: - TestFile(); - ~TestFile() { if (wxFileExists(m_name)) wxRemoveFile(m_name); } - wxString GetName() const { return m_name; } -private: - wxString m_name; -}; - -// Initialise with a test pattern so we can see if the file is replaced -// -TestFile::TestFile() -{ - wxFile file; - m_name = wxFileName::CreateTempFileName(wxT("wxtest"), &file); - file.Write("Before", 6); -} - +#include "testfile.h" /////////////////////////////////////////////////////////////////////////////// // The test case