/* DuckDetector(Test) - detecting properties of a type at compile time Copyright (C) 2010, Hermann Vosseler   **Lumiera** is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License as published by the   Free Software Foundation; either version 2 of the License, or (at your   option) any later version. See the file COPYING for further details. * *****************************************************************/ /** @file duck-detector-test.cpp ** unit test \ref DuckDetector_test: ** duck typing through metaprogramming */ #include "lib/test/run.hpp" #include "lib/meta/duck-detector.hpp" #include "lib/format-cout.hpp" #include "lib/util.hpp" namespace lib { namespace meta{ namespace test{ namespace { // some test ducks.... struct PropperGander { class Core; PropperGander& honk (long,long); }; struct Propaganda { void honk(float); }; }//(End) with test ducks #define SHOW_CHECK(_EXPR_) cout << STRINGIFY(_EXPR_) << "\t : " << (_EXPR_::value? "Yes":"No") << endl; /*******************************************************************************//** * @test verify building predicates to detect properties of a type at compile time. * Especially, this allows us to detect if a type in question * - has a nested type with a specific name * - has a member with a specific name * - defines a function with a specific signature */ class DuckDetector_test : public Test { META_DETECT_NESTED(Core); META_DETECT_MEMBER(honk); META_DETECT_FUNCTION(PropperGander&, honk, (long,long)); void run (Arg) { SHOW_CHECK( HasNested_Core ); SHOW_CHECK( HasNested_Core ); SHOW_CHECK( HasMember_honk ); SHOW_CHECK( HasMember_honk ); SHOW_CHECK( HasFunSig_honk ); SHOW_CHECK( HasFunSig_honk ); } }; /** Register this test class... */ LAUNCHER (DuckDetector_test, "unit meta"); }}} // namespace lib::meta::test