2023-04-05 07:09:13 -04:00
|
|
|
// Make sure that we're testing for the correct conditions!
|
2023-04-05 02:18:51 -04:00
|
|
|
|
|
|
|
struct Rectangle {
|
|
|
|
width: i32,
|
2024-04-17 16:46:21 -04:00
|
|
|
height: i32,
|
2023-04-05 02:18:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Rectangle {
|
2023-04-05 07:09:13 -04:00
|
|
|
// Only change the test functions themselves
|
2024-05-22 09:04:12 -04:00
|
|
|
fn new(width: i32, height: i32) -> Self {
|
2023-04-05 07:24:14 -04:00
|
|
|
if width <= 0 || height <= 0 {
|
2023-04-05 02:18:51 -04:00
|
|
|
panic!("Rectangle width and height cannot be negative!")
|
|
|
|
}
|
2024-04-17 16:46:21 -04:00
|
|
|
Rectangle { width, height }
|
2023-04-05 02:18:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2023-04-05 02:18:51 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn correct_width_and_height() {
|
2023-04-05 07:09:13 -04:00
|
|
|
// This test should check if the rectangle is the size that we pass into its constructor
|
|
|
|
let rect = Rectangle::new(10, 20);
|
|
|
|
assert_eq!(???, 10); // check width
|
|
|
|
assert_eq!(???, 20); // check height
|
2023-04-05 02:18:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn negative_width() {
|
2023-04-05 07:24:14 -04:00
|
|
|
// This test should check if program panics when we try to create rectangle with negative width
|
2023-04-05 02:18:51 -04:00
|
|
|
let _rect = Rectangle::new(-10, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn negative_height() {
|
2023-04-05 07:24:14 -04:00
|
|
|
// This test should check if program panics when we try to create rectangle with negative height
|
2023-04-05 02:18:51 -04:00
|
|
|
let _rect = Rectangle::new(10, -10);
|
|
|
|
}
|
|
|
|
}
|