rust-testing
SKILL.md
Rust Testing Skill
Master comprehensive testing in Rust: unit tests, integration tests, doc tests, property testing, and mocking.
Quick Start
Unit Tests
pub fn add(a: i32, b: i32) -> i32 {
a + b
}
#[cfg(test)]
mod tests {
use super::*;