1 个不稳定版本
使用旧的 Rust 2015
0.1.0 | 2018 年 3 月 29 日 |
---|
#23 在 #数据驱动
455 每月下载量
6KB
120 代码行
尘埃 - Rust 中的数据驱动测试
例如
#![feature(plugin, decl_macro)]
#![plugin(dust)]
#[theory]
#[data(1,1)]
#[data(2,2)]
#[data(3,3)]
#[data(4,4)]
fn test_integer(a: i32, b: i32) {
assert!(a==b);
}
#[theory]
#[data("test", "test")]
#[data("test2", "test2")]
fn test_str(a: &str, b: &str) {
assert!(a==b);
}
#[test]
fn bla() {
assert!(1==1);
}
依赖项
~225KB