]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/misc/misctests.cpp
Basque translations update from Xabier Aramendi.
[wxWidgets.git] / tests / misc / misctests.cpp
index fed7b1e4ff7164d8799658adbc5acc3157489f63..54fd941def8ab519cb84fe4f08d9ad8821c54957 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     test miscellaneous stuff
 // Author:      Peter Most, Vadim Zeitlin
 // Created:     2008-07-10
 // Purpose:     test miscellaneous stuff
 // Author:      Peter Most, Vadim Zeitlin
 // Created:     2008-07-10
-// RCS-ID:      $Id$
 // Copyright:   (c) 2008 Peter Most
 //              (c) 2009 Vadim Zeitlin
 ///////////////////////////////////////////////////////////////////////////////
 // Copyright:   (c) 2008 Peter Most
 //              (c) 2009 Vadim Zeitlin
 ///////////////////////////////////////////////////////////////////////////////
@@ -115,17 +114,21 @@ bool IsNull(void *p)
 
 void MiscTestCase::StaticCast()
 {
 
 void MiscTestCase::StaticCast()
 {
+#if wxUSE_TARSTREAM
     wxTarEntry tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(&tarEntry, wxArchiveEntry) );
 
     wxArchiveEntry *entry = &tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxTarEntry) );
 
     wxTarEntry tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(&tarEntry, wxArchiveEntry) );
 
     wxArchiveEntry *entry = &tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxTarEntry) );
 
+#if wxUSE_ZIPSTREAM
     wxZipEntry zipEntry;
     entry = &zipEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxZipEntry) );
     wxZipEntry zipEntry;
     entry = &zipEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxZipEntry) );
+    WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) );
+#endif // wxUSE_ZIPSTREAM
 
     WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry, wxTarEntry)) );
 
     WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry, wxTarEntry)) );
-    WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) );
+#endif // wxUSE_TARSTREAM
 }
 
 }