00001 #include "StackTest.hh" 00002 #include <iostream> 00003 00004 int 00005 main() 00006 { 00007 StackTest t; 00008 t.run(); 00009 00010 cout << "Generating report..." << endl; 00011 00012 cout << t << endl; 00013 } 00014 00015 /* Output: 00016 Test "class StackTest": 00017 Passed: 14 Failed: 0 00018 */ 00019