File: trompeloeil.hpp

package info (click to toggle)
trompeloeil-cpp 49-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,640 kB
  • sloc: cpp: 20,576; sh: 126; makefile: 5
file content (49 lines) | stat: -rw-r--r-- 1,495 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * 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