Crate rust_test_framework

Crate rust_test_framework 

Source

Enums§

SourceType
A source type to generate tests from.

Functions§

version
Returns the version of the framework.

Attribute Macros§

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.