rust_wheel 0.1.13

A project to define some public component.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(test)]
mod tests {
    use crate::common::util::time_util::get_current_millisecond;

    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }

    #[test]
    fn get_milliseconds(){
        let mini = get_current_millisecond();
        print!("{}",mini)
    }
}