marco_test_one/
lib.rs

1pub fn hello() {
2    println!("Hi, world!!!!!!!");
3}
4
5#[cfg(test)]
6mod tests {
7    #[test]
8    fn it_works() {
9        let result = 2 + 3;
10        assert_eq!(result, 5);
11    }
12}