mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
572 B
33 lines
572 B
3 years ago
|
#[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() {
|
||
|
let larger = Rectangle {
|
||
|
width: 8,
|
||
|
height: 7,
|
||
|
};
|
||
|
let smaller = Rectangle {
|
||
|
width: 5,
|
||
|
height: 1,
|
||
|
};
|
||
|
|
||
|
assert!(larger.can_hold(&smaller));
|
||
|
}
|
||
|
}
|
||
|
// ANCHOR_END: here
|