⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 more_than_50.cpp

📁 VC源码,开源测试工具.有助于VC++的学习与开发
💻 CPP
字号:
#include <tut/tut.hpp>#include <stdexcept>using std::runtime_error;namespace tut{/** * Testing we can create 55-tests group. */struct more_than_50{    test_runner tr;    struct dummy    {        static bool called;    };    typedef test_group<dummy,55> tf;    typedef tf::object object;    tf factory;    more_than_50();};bool more_than_50::dummy::called = false;/** * Internal test definition */template<>template<>void more_than_50::object::test<1>(){    if (!called)    {        throw runtime_error("not called 55");    }}template<>template<>void more_than_50::object::test<55>(){    called = true;}/** * Internal constructor */more_than_50::more_than_50()     : factory("internal", tr){}typedef test_group<more_than_50> tg;typedef tg::object object;tg more_than_50("more than default 50 tests");/** * Checks running all (and call 55th test) and then only 1th. */template<>template<>void object::test<1>(){    set_test_name("checks running all (and call 55th test) and then only 1th");        tr.run_tests("internal");    ensure_equals("result", tr.run_test("internal",1).result, test_result::ok);}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -