Refactor SectionInfo constructors

This commit is contained in:
Martin Hořeňovský 2019-11-16 21:53:32 +01:00
parent d36c15c3ca
commit c9067b2253
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
11 changed files with 47 additions and 37 deletions

View file

@ -218,6 +218,12 @@ namespace { namespace CompilationTests {
REQUIRE( y.v == 0 );
REQUIRE( 0 == y.v );
}
TEST_CASE("#1319: Sections can have description (even if it is not saved", "[compilation]") {
SECTION("SectionName", "This is a long form section description") {
SUCCEED();
}
}
}} // namespace CompilationTests