#assertions #tracing #framework #tokio #layer

tracing-assertions

用于 Tokio tracing 的断言框架

2 个版本

新版本 0.1.1 2024 年 8 月 24 日
0.1.0 2024 年 8 月 24 日

#37 in #assertions

Apache-2.0 许可

9KB
150

tracing-assertions

Crates.io docs codecov

tracing 的断言框架。

比替代方案更简单、更快速。


lib.rs:

tracing 的断言框架。

比替代方案更简单、更快速。

use tracing_subscriber::layer::SubscriberExt;
// Initialize a subscriber with the layer.
let asserter = tracing_assertions::Layer::default();
let registry = tracing_subscriber::Registry::default();
let subscriber = registry.with(asserter.clone());
let guard = tracing::subscriber::set_default(subscriber);
let one = asserter.matches("one");
let two = asserter.matches("two");
let and = &one & &two;
tracing::info!("one");
assert!(one);
tracing::info!("two");
assert!(two);
assert!(and);

drop(guard); // Drop `subscriber` as the current subscriber.

依赖关系

~4.5–6.5MB
~106K SLoC