Lines Matching full:fixture
32 * FIXTURE(my_fixture) {
190 * This call may be used when the type of the fixture data
197 * FIXTURE(fixture_name) - Called once per fixture to setup the data and
200 * @fixture_name: fixture name
204 * FIXTURE(datatype name) {
212 #define FIXTURE(fixture_name) \ macro
221 * FIXTURE_SETUP(fixture_name) - Prepares the setup function for the fixture.
224 * @fixture_name: fixture name
228 * FIXTURE_SETUP(fixture name) { implementation }
230 * Populates the required "setup" function for a fixture. An instance of the
235 * of any dependent fixture tests.
247 * @fixture_name: fixture name
251 * FIXTURE_TEARDOWN(fixture name) { implementation }
253 * Populates the required "teardown" function for a fixture. An instance of the
266 * fixture-based test cases
268 * @fixture_name: fixture name
273 * TEST_F(fixture, name) { implementation }
275 * Defines a test that depends on a fixture (e.g., is part of a test case).
276 * Very similar to TEST() except that *self* is the setup instance of fixture's
295 /* fixture data is alloced, setup, and torn down per call. */ \