VariadicMacros.tests.cpp 570 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Created by Phil on 15/03/2013.
  3. * Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
  4. *
  5. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. */
  8. #include "catch.hpp"
  9. TEST_CASE()
  10. {
  11. SUCCEED( "anonymous test case" );
  12. }
  13. TEST_CASE( "Test case with one argument" )
  14. {
  15. SUCCEED( "no assertions" );
  16. }
  17. TEST_CASE( "Variadic macros", "[variadic][sections]" )
  18. {
  19. SECTION( "Section with one argument" )
  20. {
  21. SUCCEED( "no assertions" );
  22. }
  23. }