mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 05:13:29 +08:00
50 lines
926 B
Rust
Executable File
50 lines
926 B
Rust
Executable File
#[derive(Debug)]
|
|
struct Rectangle {
|
|
width: u32,
|
|
height: u32,
|
|
}
|
|
|
|
impl Rectangle {
|
|
fn can_hold(&self, other: &Rectangle) -> bool {
|
|
self.width > other.width && self.height > other.height
|
|
}
|
|
}
|
|
|
|
// ANCHOR: here
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn larger_can_hold_smaller() {
|
|
// --snip--
|
|
// ANCHOR_END: here
|
|
let larger = Rectangle {
|
|
width: 8,
|
|
height: 7,
|
|
};
|
|
let smaller = Rectangle {
|
|
width: 5,
|
|
height: 1,
|
|
};
|
|
|
|
assert!(larger.can_hold(&smaller));
|
|
// ANCHOR: here
|
|
}
|
|
|
|
#[test]
|
|
fn smaller_cannot_hold_larger() {
|
|
let larger = Rectangle {
|
|
width: 8,
|
|
height: 7,
|
|
};
|
|
let smaller = Rectangle {
|
|
width: 5,
|
|
height: 1,
|
|
};
|
|
|
|
assert!(!smaller.can_hold(&larger));
|
|
}
|
|
}
|
|
// ANCHOR_END: here
|