• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
TEST_CASE()12 TEST_CASE()
13 {
14     SUCCEED( "anonymous test case" );
15 }
16 
17 TEST_CASE( "Test case with one argument" )
18 {
19     SUCCEED( "no assertions" );
20 }
21 
22 TEST_CASE( "Variadic macros", "[variadic][sections]" )
23 {
24     SECTION( "Section with one argument" )
25     {
26         SUCCEED( "no assertions" );
27     }
28 }
29 
30