You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-12-21 06:31:06 +02:00
Merge pull request #85 from der3318/update-test-cases-for-polygons
Better Test Case for Day 2 Polygon Exercise
This commit is contained in:
@@ -207,6 +207,7 @@ mod tests {
|
|||||||
fn test_shape_circumferences() {
|
fn test_shape_circumferences() {
|
||||||
let mut poly = Polygon::new();
|
let mut poly = Polygon::new();
|
||||||
poly.add_point(Point::new(12, 13));
|
poly.add_point(Point::new(12, 13));
|
||||||
|
poly.add_point(Point::new(17, 11));
|
||||||
poly.add_point(Point::new(16, 16));
|
poly.add_point(Point::new(16, 16));
|
||||||
let shapes = vec![
|
let shapes = vec![
|
||||||
Shape::from(poly),
|
Shape::from(poly),
|
||||||
@@ -217,7 +218,7 @@ mod tests {
|
|||||||
.map(Shape::circumference)
|
.map(Shape::circumference)
|
||||||
.map(round_two_digits)
|
.map(round_two_digits)
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
assert_eq!(circumferences, vec![10.0, 31.42]);
|
assert_eq!(circumferences, vec![15.48, 31.42]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ANCHOR_END: unit-tests
|
// ANCHOR_END: unit-tests
|
||||||
|
|||||||
Reference in New Issue
Block a user