Crate rust_test_framework
Source - SourceType
- A source type to generate tests from.
- version
- Returns the version of the framework.
- 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_case_source
- Generates tests based on a provided source and model of that data
(must implement/derive
serde::Deserialize or be a built-in type). - test_fixture
- Marks a module as a test fixture, enabling
#[setup] and #[teardown] functionality.