Lines Matching full:documentation
18 These are the tests that come from the examples in the Rust documentation. They
30 Documentation/dev-tools/kunit/index.rst for the general KUnit documentation
31 and Documentation/dev-tools/kunit/architecture.rst for the details of kernel
43 KUnit tests are documentation tests
46 These documentation tests are typically examples of usage of any item (e.g.
50 documentation. For instance:
119 documentation do not need to care about which testing framework is used. In
126 Since these tests are examples, i.e. they are part of the documentation, they
136 Additionally, there are the ``#[test]`` tests. Like for documentation tests,
143 For instance, assume we want to test the function ``f`` from the documentation
168 Like documentation tests, the ``assert!`` and ``assert_eq!`` macros are mapped
201 use a documentation test instead. Even edge cases of an API, e.g. error or
235 Refer to Documentation/dev-tools/kselftest.rst for the general Kselftest
236 documentation.