finsihed ch11

This commit is contained in:
2025-02-12 21:24:07 +00:00
parent d00c64b51b
commit 70741265e8
2 changed files with 136 additions and 1 deletions

View File

@ -33,4 +33,6 @@ This chapter will cover:
- [Controlling How Tests Are Run](Test%20Controls.md)
- [Test Organization](Test_Organization.md)
But it will also talk about Rust's testing facilities, the annotations and macros available to you when writing tests, the default behavior and options provided for running your tests and how to organize tests into unit tests and integration tests.
But it will also talk about Rust's testing facilities, the annotations and macros available to you when writing tests, the default behavior and options provided for running your tests and how to organize tests into unit tests and integration tests.
Test are still important to check that the functionality, logic or expectations to behave work even with all of Rusts checks (type system and ownership rules) to prevnt bugs.