pubfnadd_one(s:&str)-> String{
s.parse::<i32>().map(|n|(n +1).to_string()).unwrap()}fnmain(){}#[cfg(test)]modtests{#[test]fnadd_one(){// The path here is always relative from the crate root.
trycall::trycall!("examples/add_one/tests").with(super::add_one);}}