diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-07 17:35:17 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-12 09:57:31 -0500 |
commit | fc3283314539d6c3fb577359f6cb364c19c13726 (patch) | |
tree | 8b8b53585fd9bc655f32eba141f3c2d25d21d882 /doc/develop/testing.rst | |
parent | e1b12e39452fba018e39c7d9005870ab80450b8c (diff) |
doc: Explain briefly how to write new tests
Add a second on writing tests, covering when to use Python and C, where
to put the tests, etc. Add a link to the existing Python test
documentation.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/develop/testing.rst')
-rw-r--r-- | doc/develop/testing.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/develop/testing.rst b/doc/develop/testing.rst index b181c2e2e4..ced13ac8bb 100644 --- a/doc/develop/testing.rst +++ b/doc/develop/testing.rst @@ -117,6 +117,8 @@ or is covered sparingly. So here are some suggestions: is much easier to add onto a test - writing a new large test can seem daunting to most contributors. +See doc:`tests_writing` for how to write tests. + Future work ----------- |