// tests1.rs // 测试对于确保代码实现了预期功能非常重要。 // 可以用下面的命令对当前文件中的代码进行测试: // rustlings run tests1 // 关于测试还有个问题——如何成功编译测试、通过测试或者使测试失败? // 执行 `rustlings hint tests1` 获取提示 :) // I AM NOT DONE #[cfg(test)] mod tests { #[test] fn you_can_assert() { assert!(); } }