• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 use math_lib::add;
2 
3 #[test]
add_three_and_four()4 fn add_three_and_four() {
5     assert_eq!(add(3, 4), 7);
6 }
7