• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include "action_tests.hpp"
10 
11 int
main()12 main()
13 {
14     assign_action_test();
15     assign_key_action_test();
16     clear_action_test();
17     decrement_action_test();
18     erase_action_test();
19     increment_action_test();
20     insert_key_action_test();
21     push_front_action_test();
22     push_back_action_test();
23     swap_action_test();
24 
25     return boost::report_errors();
26 }
27