1 use math_lib::add; 2 3 #[test] add_one_and_two()4 fn add_one_and_two() { 5 assert_eq!(add(1, 2), 3); 6 } 7