mirror of
https://github.com/catchorg/Catch2.git
synced 2025-02-04 14:43:30 +01:00
37186a1d04
(Also includes regenerated files from previous commits)
28 lines
745 B
C++
28 lines
745 B
C++
/*
|
|
* 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"
|
|
|
|
inline bool itDoesThis(){ return true; }
|
|
inline bool itDoesThat(){ return true; }
|
|
|
|
SCENARIO( "Do that thing with the thing", "[Tags]" ) {
|
|
GIVEN( "This stuff exists" ) {
|
|
// make stuff exist
|
|
WHEN( "I do this" ) {
|
|
// do this
|
|
THEN( "it should do this")
|
|
{
|
|
REQUIRE( itDoesThis() );
|
|
AND_THEN( "do that")
|
|
REQUIRE( itDoesThat() );
|
|
}
|
|
}
|
|
}
|
|
}
|