Lines Matching refs:tests
28 unit tests within the Linux kernel. Using KUnit, you can define groups
29 of test cases called test suites. The tests either run on kernel boot
36 KUnit tests are part of the kernel, written in the C (programming)
39 completion, KUnit can run around 100 tests in less than 10 seconds.
48 that configures the Linux kernel, runs KUnit tests under QEMU or UML
56 - Provides a framework for writing unit tests.
57 - Runs tests on any kernel architecture.
69 A unit test tests a single unit of code in isolation. A unit test is the finest
78 To write good unit tests, there is a simple but powerful pattern:
98 Read also :ref:`kinds-of-tests`.
106 * Documentation/dev-tools/kunit/run_manual.rst - run tests without kunit_tool.
107 * Documentation/dev-tools/kunit/usage.rst - write tests.