roro_lib/
roro.rs

1
2#[derive(Debug)]
3pub struct Roro {
4}
5
6impl Roro {
7    /// New Roro
8    pub fn new() -> Self {
9        println!("-> Roro::new()");
10        Self {}
11    }
12}
13
14#[cfg(test)]
15mod tests_roro {
16    use super::Roro;
17
18    #[test]
19    fn test_roro1() {
20        Roro::new();
21    }
22}