main.cpp
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:0k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #include "tut.h"
  2. #include "tut_reporter.h"
  3. namespace tut {
  4. test_runner_singleton runner;
  5. }
  6. int main() {
  7. tut::reporter reporter;
  8. tut::runner.get().set_callback(&reporter);
  9. try {
  10. tut::runner.get().run_tests();
  11. } catch (const std::exception& ex) {
  12. std::cerr << "Exception raised: " << ex.what() << std::endl;
  13. return 1;
  14. }
  15. return 0;
  16. }