mirror of https://github.com/rollbear/trompeloeil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/*
|
|
* Trompeloeil C++ mocking framework
|
|
*
|
|
* Copyright (C) Björn Fahller 2014-2021
|
|
*
|
|
* Use, modification and distribution is subject to the
|
|
* Boost Software License, Version 1.0. (See accompanying
|
|
* file LICENSE_1_0.txt or copy atl
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*
|
|
* Project home: https://github.com/rollbear/trompeloeil
|
|
*/
|
|
|
|
#ifndef TROMPELOEIL_HPP_
|
|
#define TROMPELOEIL_HPP_
|
|
|
|
|
|
// trompe l'oeil noun (Concise Encyclopedia)
|
|
// Style of representation in which a painted object is intended
|
|
// to deceive the viewer into believing it is the object itself...
|
|
|
|
// project home: https://github.com/rollbear/trompeloeil
|
|
|
|
|
|
// Deficiencies and missing features
|
|
// * Mocking function templates is not supported
|
|
// * If a macro kills a kitten, this threatens extinction of all felines!
|
|
|
|
#include "trompeloeil/mock.hpp"
|
|
#include "trompeloeil/lifetime.hpp"
|
|
#include "trompeloeil/matcher.hpp"
|
|
#include "trompeloeil/matcher/any.hpp"
|
|
#include "trompeloeil/matcher/compare.hpp"
|
|
#include "trompeloeil/matcher/deref.hpp"
|
|
#if TROMPELOEIL_CPLUSPLUS >= 201402L
|
|
#include "trompeloeil/matcher/member_is.hpp"
|
|
#endif
|
|
#include "trompeloeil/matcher/not.hpp"
|
|
#if TROMPELOEIL_CPLUSPLUS >= 201402L
|
|
#include "trompeloeil/matcher/range.hpp"
|
|
#endif
|
|
#include "trompeloeil/matcher/re.hpp"
|
|
#include "trompeloeil/matcher/set_predicate.hpp"
|
|
#include "trompeloeil/sequence.hpp"
|
|
#include "trompeloeil/stream_tracer.hpp"
|
|
#ifdef __cpp_impl_coroutine
|
|
#include "trompeloeil/coro.hpp"
|
|
#endif
|
|
#endif // include guard
|