igsha / ccatch

Unit Testing Framework for pure C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support nesting sections

igsha opened this issue · comments

Example:

SECTION("first")
{
    SECTION("second-nested")
    {
        SECTION("third-nested")
        {
            REQUIRE(7 == 7);
        }
    }
}

Outer section is like a simple TEST_CASE