Fix error: ISO C++ forbids in-class initialization of non-const static member 'm_started'
[catch.git] / projects / SelfTest / VariadicMacrosTests.cpp
blobb784076d89fdb6b00a3f4761c433fedf82590f56
1 /*
2 * Created by Phil on 15/03/2013.
3 * Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
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 */
9 #include "catch.hpp"
11 #ifdef CATCH_CONFIG_VARIADIC_MACROS
13 TEST_CASE()
15 SUCCEED( "anonymous test case" );
18 TEST_CASE( "Test case with one argument" )
20 SUCCEED( "no assertions" );
23 TEST_CASE( "Variadic macros", "[variadic][sections]" )
25 SECTION( "Section with one argument" )
27 SUCCEED( "no assertions" );
31 #endif