use hello_world_cargo; use hello_world_cargo::adder::add_one; mod common; #[test] fn should_add_item() { common::common_setup(); let result = add_one(2); assert_eq!(result, 3); }