#assert #compare #testing

sixarm_assert

Rust 测试断言宏。由 SixArm.com 提供。

2 个稳定版本

1.1.1 2021 年 3 月 29 日

#96 in #compare

21 每月下载
用于 sixarm_collections

MIT OR Apache-2.0 OR GPL-2.0-only

7KB
86

SixArm.com 的 Rust 测试断言宏

我们在客户项目中使用这些断言。

assert_set_eq!

示例

let a = vec![1, 2, 3];
let b = vec![3, 2, 1];
assert_set_eq!(a, b);

assert_set_ne!

示例

let a = vec![1, 2, 3];
let b = vec![4, 5, 6];
assert_set_ne!(a, b;

无运行时依赖