exercism/rust/difference-of-squares/tests/difference-of-square.rs
2017-07-20 20:33:09 -04:00

31 lines
616 B
Rust

extern crate difference_of_squares as squares;
#[test]
fn test_square_of_sum_5() {
assert_eq!(225, squares::square_of_sum(5));
}
#[test]
fn test_sum_of_squares_5() {
assert_eq!(55, squares::sum_of_squares(5));
}
#[test]
fn test_difference_5() {
assert_eq!(170, squares::difference(5));
}
#[test]
fn test_square_of_sum_100() {
assert_eq!(25502500, squares::square_of_sum(100));
}
#[test]
fn test_sum_of_squares_100() {
assert_eq!(338350, squares::sum_of_squares(100));
}
#[test]
fn test_difference_100() {
assert_eq!(25164150, squares::difference(100));
}