Completed
intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Rust- Automated Testing
Automatically move to the next video in the Classroom when playback concludes
- 1 intro
- 2 Anatomy of a Test Function
- 3 Checking Results with the assert! Macro
- 4 Testing Equality with the assert_eq! and assert_ne! Macros
- 5 Adding Custom Failure Messages
- 6 Checking for Panics with should_panic
- 7 Using Result in Tests
- 8 Running Tests in Parallel or Consecutively
- 9 Showing Function Output
- 10 Running a Subset of Tests by Name
- 11 Ignoring Some Tests Unless Specifically Requested
- 12 Test Organization
- 13 Submodules in Integration Tests
- 14 Integration Tests for Binary Crates