FCF 2.0 development in progress...
> > > >
[News] [C++ Libraries API] [C++ Downloads] [Donate to the project] [Contacts]

fcf::NTest::EFixtureLevel enum

Type: fcf::NTest::EFixtureLevel

Package: fcfTest

File: test.hpp

Available from version: 2.0.14

Defines the launch zone for the fixture.

Enum items
FL_GLOBAL = 0 - The fixture's global scope. Initialization runs before all tests, and the completion handler runs after all tests.
FL_PART = 1 - Partition fixture execution zone. Initialization runs before the start of a test in a new partition, and the completion handler runs after the last test in the partition.
FL_GROUP = 2 - Fixture scope is per group. Initialization runs before the start of a test in a new group, and the completion handler runs after the last test in the group.
FL_TEST = 3 - Fixture scope is individual test scope. Initialization runs before the start of each test, and the completion handler runs after the test.