Define TEST_GROUP

Define Documentation

TEST_GROUP(testGroup)
[source]

Define a named test group using mu::tiny::test::Test as the base class.

All tests in the group share the same mu::tiny::test::Test::setup() and mu::tiny::test::Test::teardown() methods. mu::tiny::test::Test::setup() runs before each test body; mu::tiny::test::Test::teardown() runs after, even if the test fails. A group body may also declare helper member variables and methods accessible to all tests in the group.

Parameters:
  • testGroup – Identifier for the group (used in filtering and output).