测试自定义箱子

Testing a custom crate

我在/src/lib.rs 中得到了这个板条箱,我正在尝试 运行 测试:

#![crate_type = "lib"]
#![crate_name = "mycrate"]

pub mod mycrate {
    pub struct Struct {
        field: i32,
    }

    impl Struct {
        pub fn new(n: i32) -> Struct {
            Struct { field: n }
        }
    }
}

/tests/test.rs处的测试文件:

extern crate mycrate;

use mycrate::*;

#[test]
fn test() {
    ...
}

运行 cargo test 给出了这个错误:

tests/test.rs:3:5: 3:16 error: import `mycrate` conflicts with imported crate in this module (maybe you meant `use mycrate::*`?) [E0254]
tests/test.rs:3 use mycrate::*;
                     ^~~~~~~~~

我做错了什么?

一个箱子也自动成为一个有自己名字的模块。所以你不需要指定一个sub-module。由于您导入了 mycrate crate 中的所有内容,因此您还导入了 mycrate::mycrate 模块,这导致了命名冲突。

只需将 src/lib.rs 的内容更改为

pub struct Struct {
    field: i32,
}

impl Struct {
    pub fn new(n: i32) -> Struct {
        Struct { field: n }
    }
}

也不需要 crate_namecrate_type 属性。