#include <cassert>
#include <tut.h>
#include <tut_reporter.h>
#include "utils.h"
Go to the source code of this file.
Data Structures | |
class | anonymous_namespace{utils_unittest.cpp}::IPluginA |
Images interface. More... | |
class | anonymous_namespace{utils_unittest.cpp}::IPluginB |
class | anonymous_namespace{utils_unittest.cpp}::IPluginC |
class | anonymous_namespace{utils_unittest.cpp}::Impl |
Implement all images interfaces. More... | |
class | anonymous_namespace{utils_unittest.cpp}::TemplateImpl< T > |
template test More... | |
struct | tut::empty |
Namespaces | |
namespace | anonymous_namespace{utils_unittest.cpp} |
namespace | tut |
Functions | |
tf | tut::interface_ptr_group ("interface utils test") |
int | main () |
int main | ( | ) |
Definition at line 231 of file utils_unittest.cpp.
References tut::runner.
00232 { 00233 tut::reporter reporter; 00234 tut::runner.get().set_callback(&reporter); 00235 00236 try 00237 { 00238 tut::runner.get().run_tests(); 00239 } 00240 catch (const std::exception& ex) 00241 { 00242 cerr << "tut raised ex: " << ex.what() << endl; 00243 return 1; 00244 } 00245 while(1); 00246 00247 return 0; 00248 }