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