#include <cassert>#include <tut.h>#include <tut_reporter.h>#include "signal_slot.h"#include "log.h"
Go to the source code of this file.
Data Structures | |
| class | testslot::SlotA |
| class | testslot::SlotB |
| struct | tut::empty |
Namespaces | |
| namespace | testslot |
| namespace | tut |
Typedefs | |
| typedef std::vector< int > | testslot::Integers |
Functions | |
| tf | tut::signal_slot_group ("signal slot test") |
| int | main () |
| int main | ( | ) |
Definition at line 349 of file signal_slot_unittest.cpp.
References tut::runner.
00350 { 00351 tut::reporter reporter; 00352 tut::runner.get().set_callback(&reporter); 00353 00354 try 00355 { 00356 tut::runner.get().run_tests(); 00357 } 00358 catch (const std::exception& ex) 00359 { 00360 cerr << "tut raised ex: " << ex.what() << endl; 00361 return 1; 00362 } 00363 00364 return 0; 00365 }
1.6.2-20100208