Crate rust_test_framework
Source - wait_for
- A macro that waits for a condition to be met, polling at a regular interval.
- SourceType
- A source type to generate tests from.
- version
- Returns the version of the framework.
- rust_test_seen_value
- Internal use only.
- setup
- Marks a function as a setup function to be run before each test in a
#[test_fixture]. - teardown
- Marks a function as a teardown function to be run after each test in a
#[test_fixture]. - test_fixture
- Marks a module as a test fixture, enabling
#[setup] and #[teardown] functionality. - test_params
- Generates tests based on provided inlined parameters.
(must implement/derive
serde::Deserialize or be a built-in type). - test_params_source
- Generates tests based on a provided source and model of that data
(must implement/derive
serde::Deserialize or be a built-in type).