Main Page   Class Hierarchy   Compound List   File List   Compound Members  

all_tests.cpp

00001 
00002 
00003 #include <iostream>
00004 
00005 //#include "simplesmartptrtest.h"
00006 #include "zipfiletest.h"
00007 
00008 using std::cout;
00009 using std::endl;
00010 using namespace zipios;
00011 
00012 int main() {
00013   try {
00014     //  SimpleSmartPointerTest sspt;
00015     //  sspt.runTests();
00016     
00017     ZipFileTest zipFileTest;
00018     zipFileTest.runTests();
00019   } catch (exception &ex) {
00020     cout << "Exception: " << ex.what() << endl;
00021     return 1;
00022   }
00023   return 0;
00024 }

Generated at Tue Aug 14 20:39:26 2001 for Zipios++ by doxygen1.2.0 written by Dimitri van Heesch, © 1997-2000