Lines Matching full:suite
44 * This is run once before all test cases in the suite.
47 static int example_test_init_suite(struct kunit_suite *suite) in example_test_init_suite() argument
49 kunit_info(suite, "initializing suite\n"); in example_test_init_suite()
127 * Here we make a list of all the test cases we want to add to the test suite
135 * test suite.
145 * This defines a suite or grouping of tests.
147 * Test cases are defined as belonging to the suite by adding them to
154 * cleanup. For clarity, running tests in a test suite would behave as follows:
156 * suite.suite_init(suite);
157 * suite.init(test);
158 * suite.test_case[0](test);
159 * suite.exit(test);
160 * suite.init(test);
161 * suite.test_case[1](test);
162 * suite.exit(test);
163 * suite.suite_exit(suite);
174 * This registers the above test suite telling KUnit that this is a suite of