作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 lib.rs 中定义了一个常量,如下所示:const GREEN: LedColor = LedColor(0, 255, 0);
在同一个 lib.rs 文件中,我也有尝试使用 GREEN 的测试,如下所示:
#[cfg(test)]
mod tests {
use {OFF, YELLOW, RED, GREEN};
#[test]
fn some_test() {//...}
no GREEN in path
最佳答案
您需要使用 super
keyword , 来引用父模块。
模块tests
实际上是 crate::tests
, 这意味着 GREEN
你写的方式真的是crate::tests::GREEN
.那不存在,如 GREEN
在父模块中定义。所以你需要:
#[cfg(test)]
mod tests {
use super::{OFF, YELLOW, RED, GREEN};
}
关于rust - 如何在 Rust 的同一个 lib.rs 文件中的测试中引用常量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62379567/
我是一名优秀的程序员,十分优秀!