]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/spirit/classic/test/actor/action_tests.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / spirit / classic / test / actor / action_tests.hpp
CommitLineData
7c673cae
FG
1/*=============================================================================
2 Copyright (c) 2003 Jonathan de Halleux (dehalleux@pelikhan.com)
3 http://spirit.sourceforge.net/
4
5 Use, modification and distribution is subject to the Boost Software
6 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 http://www.boost.org/LICENSE_1_0.txt)
8=============================================================================*/
9#ifndef BOOST_SPIRIT_ACTOR_TEST_HPP
10#define BOOST_SPIRIT_ACTOR_TEST_HPP
7c673cae
FG
11#include "../impl/string_length.hpp"
12
1e59de90
TL
13#include <boost/core/lightweight_test.hpp>
14
7c673cae
FG
15///////////////////////////////////////////////////////////////////////////////
16// Test suite for actors
17///////////////////////////////////////////////////////////////////////////////
18void assign_action_test();
19void assign_key_action_test();
20void clear_action_test();
21void decrement_action_test();
22void erase_action_test();
23void increment_action_test();
24void insert_key_action_test();
25void insert_at_action_test();
26void push_back_action_test();
27void push_front_action_test();
28void swap_action_test();
29
30#define BOOST_CHECK(t) BOOST_TEST((t));
31#define BOOST_CHECK_EQUAL(a, b) BOOST_TEST((a == b));
32#define BOOST_MESSAGE(m) std::cout << m << std::endl
33
34#endif