action_tests.cpp 811 B

1234567891011121314151617181920212223242526
  1. /*=============================================================================
  2. Copyright (c) 2003 Jonathan de Halleux (dehalleux@pelikhan.com)
  3. http://spirit.sourceforge.net/
  4. Use, modification and distribution is subject to the Boost Software
  5. License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. =============================================================================*/
  8. #include "action_tests.hpp"
  9. int
  10. main()
  11. {
  12. assign_action_test();
  13. assign_key_action_test();
  14. clear_action_test();
  15. decrement_action_test();
  16. erase_action_test();
  17. increment_action_test();
  18. insert_key_action_test();
  19. push_front_action_test();
  20. push_back_action_test();
  21. swap_action_test();
  22. return boost::report_errors();
  23. }