// headers
// ----------------------------------------------------------------------------
-#include "wx/wx.h"
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+ #include "wx/wx.h"
+#endif // WX_PRECOMP
+
#include "wx/filesys.h"
#include "wx/cppunit.h"
private:
CPPUNIT_TEST_SUITE( FileSystemTestCase );
CPPUNIT_TEST( UrlParsing );
+ CPPUNIT_TEST( FileNameToUrlConversion );
CPPUNIT_TEST_SUITE_END();
void UrlParsing();
+ void FileNameToUrlConversion();
- DECLARE_NO_COPY_CLASS(FileSystemTestCase);
+ DECLARE_NO_COPY_CLASS(FileSystemTestCase)
};
// register in the unnamed registry so that these tests are run by default
{
static const struct Data
{
- const wchar_t *url;
- const wchar_t *protocol, *left, *right, *anchor;
+ const wxChar *url;
+ const wxChar *protocol, *left, *right, *anchor;
} data[] =
{
// simple case:
CPPUNIT_ASSERT( tst.Anchor(d.url) == d.anchor );
}
}
+
+void FileSystemTestCase::FileNameToUrlConversion()
+{
+#ifdef __WINDOWS__
+ wxFileName fn1(_T("\\\\server\\share\\path\\to\\file"));
+ wxString url1 = wxFileSystem::FileNameToURL(fn1);
+
+ CPPUNIT_ASSERT( fn1.SameAs(wxFileSystem::URLToFileName(url1)) );
+#endif
+}
#endif // wxUSE_FILESYSTEM