-
Book Overview & Buying
-
Table Of Contents
The Rust Programming Handbook
By :
Welcome to Chapter 10!
After defining data, managing errors, and exploring functional concepts, we now arrive at a crucial practice for any software developer: testing.
This chapter highlights how Rust makes it easy and enjoyable to write tests, helping you ensure your code works correctly and the quality remains high over time. Rust doesn’t just support testing; it actively encourages it with fantastic built-in tools, making testing a seamless and natural part of your development journey.
Think of this chapter as learning how to build a robust safety net for all the awesome Rust code you will write!
But before we proceed, let’s start with a question most of you might have now.
Why ever bother with testing?