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 
9 #include "catch.hpp"
10 
11 #ifdef CATCH_CONFIG_VARIADIC_MACROS
12 
TEST_CASE()13 TEST_CASE()
14 {
15     SUCCEED( "anonymous test case" );
16 }
17 
18 TEST_CASE( "Test case with one argument" )
19 {
20     SUCCEED( "no assertions" );
21 }
22 
23 TEST_CASE( "Variadic macros", "[variadic][sections]" )
24 {
25     SECTION( "Section with one argument" )
26     {
27         SUCCEED( "no assertions" );
28     }
29 }
30 
31 #endif
32