2012-09-03 03:19:12 -04:00
|
|
|
/*
|
|
|
|
* 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; }
|
2013-03-04 06:19:15 -05:00
|
|
|
inline bool itDoesThat(){ return true; }
|
2012-09-03 03:19:12 -04:00
|
|
|
|
2013-03-12 14:47:53 -04:00
|
|
|
SCENARIO( "Do that thing with the thing", "[Tags]" ) {
|
2013-01-15 18:14:52 -05:00
|
|
|
GIVEN( "This stuff exists" ) {
|
2012-09-03 03:19:12 -04:00
|
|
|
// make stuff exist
|
2013-01-15 18:14:52 -05:00
|
|
|
WHEN( "I do this" ) {
|
2012-09-03 03:19:12 -04:00
|
|
|
// do this
|
2012-11-29 03:49:32 -05:00
|
|
|
THEN( "it should do this")
|
2013-03-04 06:19:15 -05:00
|
|
|
{
|
2012-09-03 03:19:12 -04:00
|
|
|
REQUIRE( itDoesThis() );
|
2013-03-04 06:19:15 -05:00
|
|
|
AND_THEN( "do that")
|
|
|
|
REQUIRE( itDoesThat() );
|
|
|
|
}
|
2012-09-03 03:19:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|