1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-20 22:46:06 +02:00
youki/test_framework/src/lib.rs
Yashodhan Joshi cb9b04fc35 Integrate lifecycle tests in new test framework
Add TestableGroup trait
2021-08-16 13:51:14 +05:30

11 lines
266 B
Rust

mod conditional_test;
mod test;
mod test_group;
mod test_manager;
mod testable;
pub use conditional_test::ConditionalTest;
pub use test::Test;
pub use test_group::TestGroup;
pub use test_manager::TestManager;
pub use testable::{TestResult, Testable, TestableGroup};