Dropped "Test case" and "Section" prefixes in test report headers

This commit is contained in:
Phil Nash
2013-01-17 11:47:23 +00:00
parent 2e7d966b76
commit 10e891767f
3 changed files with 581 additions and 656 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -14,9 +14,9 @@
// !TBD: story scenarios map to class based tests
#define SCENARIO( name, tags ) TEST_CASE( "Scenario: " name, tags )
#define GIVEN( desc ) SECTION( "Given: " desc, "" )
#define WHEN( desc ) SECTION( "When: " desc, "" )
#define THEN( desc ) SECTION( "Then: " desc, "" )
#define GIVEN( desc ) SECTION( " Given: " desc, "" )
#define WHEN( desc ) SECTION( " When: " desc, "" )
#define THEN( desc ) SECTION( " Then: " desc, "" )
inline bool itDoesThis(){ return true; }