mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Dropped "Test case" and "Section" prefixes in test report headers
This commit is contained in:
parent
2e7d966b76
commit
10e891767f
@ -238,13 +238,13 @@ namespace Catch {
|
||||
}
|
||||
void lazyPrintGroupInfo() {
|
||||
if( !unusedGroupInfo->name.empty() && unusedGroupInfo->groupsCounts > 1 ) {
|
||||
printHeader( "Group", unusedGroupInfo->name );
|
||||
printHeader( "Group: " + unusedGroupInfo->name );
|
||||
unusedGroupInfo.reset();
|
||||
}
|
||||
}
|
||||
void lazyPrintTestCaseInfo() {
|
||||
if( !currentSectionInfo ) {
|
||||
printTestCaseHeader();
|
||||
printHeader( unusedTestCaseInfo->name );
|
||||
stream << std::endl;
|
||||
unusedTestCaseInfo.reset();
|
||||
}
|
||||
@ -259,38 +259,21 @@ namespace Catch {
|
||||
|
||||
// Sections
|
||||
if( !sections.empty() ) {
|
||||
printTestCaseHeader();
|
||||
printHeader( unusedTestCaseInfo->name, false );
|
||||
|
||||
std::string firstInset;
|
||||
std::string inset;
|
||||
if( sections.size() > 1 ) {
|
||||
firstInset = "Sections: ";
|
||||
inset = " ";
|
||||
}
|
||||
else {
|
||||
firstInset = "Section: ";
|
||||
inset = " ";
|
||||
}
|
||||
typedef std::vector<ThreadedSectionInfo*>::const_reverse_iterator It;
|
||||
for( It it = sections.rbegin(), itEnd = sections.rend(); it != itEnd; ++it ) {
|
||||
if( it == sections.rbegin() )
|
||||
stream << firstInset;
|
||||
else
|
||||
stream << inset;
|
||||
stream << (*it)->name << "\n";
|
||||
}
|
||||
for( It it = sections.rbegin(), itEnd = sections.rend(); it != itEnd; ++it )
|
||||
stream << " " << (*it)->name << "\n";
|
||||
stream << getDashes() << "\n" << std::endl;
|
||||
unusedSectionInfo.reset();
|
||||
}
|
||||
}
|
||||
|
||||
void printTestCaseHeader() {
|
||||
printHeader( "Test case", unusedTestCaseInfo->name );
|
||||
}
|
||||
void printHeader( std::string const& _type, std::string const& _name ) {
|
||||
void printHeader( std::string const& _name, bool closed = true ) {
|
||||
stream << getDashes() << "\n"
|
||||
<< _type << ": '" << _name << "'\n"
|
||||
<< getDashes() << "\n";
|
||||
<< _name << "\n";
|
||||
if( closed )
|
||||
stream << getDashes() << "\n";
|
||||
}
|
||||
|
||||
void printTotals( const Totals& totals ) {
|
||||
@ -348,12 +331,12 @@ namespace Catch {
|
||||
}
|
||||
static std::string const& getDashes() {
|
||||
static const std::string dashes
|
||||
= "----------------------------------------------------------------";
|
||||
= "-----------------------------------------------------------------";
|
||||
return dashes;
|
||||
}
|
||||
static std::string const& getDoubleDashes() {
|
||||
static const std::string doubleDashes
|
||||
= "================================================================";
|
||||
= "=================================================================";
|
||||
return doubleDashes;
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user