rust_test_framework/
lib.rs

1pub use rust_test_proc_macro::{
2    setup, teardown, test_fixture, test_params, test_params_source, rust_test_seen_value,
3};
4pub use rust_test_core::SourceType;
5
6/// Returns the version of the framework.
7pub fn version() -> &'static str {
8    env!("CARGO_PKG_VERSION")
9}
10
11#[doc(hidden)]
12pub mod __private {
13    pub use serde_json;
14}