Remove support for test case descriptions

Closes #1189
This commit is contained in:
Martin Hořeňovský 2019-06-22 20:11:14 +02:00
parent be44cfa63b
commit 2bcf1b3db6
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
7 changed files with 7 additions and 31 deletions

View file

@ -157,10 +157,6 @@ namespace Catch {
Catch::cout() << Column(testCaseInfo.name).initialIndent(2).indent(4) << '\n';
if (config.verbosity() >= Verbosity::High) {
Catch::cout() << Column(Catch::Detail::stringify(testCaseInfo.lineInfo)).indent(4) << std::endl;
std::string description = testCaseInfo.description;
if (description.empty())
description = "(NO DESCRIPTION)";
Catch::cout() << Column(description).indent(4) << std::endl;
}
if (!testCaseInfo.tags.empty() && config.verbosity() > Verbosity::Quiet) {
Catch::cout() << Column(testCaseInfo.tagsAsString()).indent(6) << '\n';