Skip to main content

xacli_testing/
lib.rs

1pub mod assert;
2mod error;
3pub mod report;
4pub mod spec;
5pub mod testing;
6
7pub use assert::{and, or, snapshot, AssertResult, Asserter};
8pub use error::{Result, TestingError};
9pub use report::xacli::{
10    TestCaseConfig, TestCaseResult, TestCaseStatus, TestError, TestFailure, TestSkipped,
11    TestSuiteResult, TestSuitesResult,
12};
13pub use spec::SpecFile;
14pub use testing::{ExecuteResult, MockContext, TestCase, TestConfig, TestingApp};