mirror of
https://github.com/catchorg/Catch2
synced 2026-02-14 13:22:11 +00:00
Implemented more reporter methods and started to fill out Section impl
This commit is contained in:
31
Test/MiscTests.cpp
Normal file
31
Test/MiscTests.cpp
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* MiscTests.cpp
|
||||
* Catch - Test
|
||||
*
|
||||
* Created by Phil on 29/11/2010.
|
||||
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
||||
*
|
||||
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
*
|
||||
*/
|
||||
|
||||
#include "../catch.hpp"
|
||||
|
||||
TEST_CASE( "succeeding/Misc/Sections", "random SECTION tests" )
|
||||
{
|
||||
int a = 1;
|
||||
int b = 2;
|
||||
|
||||
SECTION( "s1", "doesn't equal" )
|
||||
{
|
||||
EXPECT( a != b );
|
||||
EXPECT( b != a );
|
||||
}
|
||||
|
||||
SECTION( "s2", "not equal" )
|
||||
{
|
||||
EXPECT_NOT( a == b);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user