tytanic_core/lib.rs
1//! The core library of the tytanic test runner.
2
3pub mod config;
4pub mod doc;
5pub mod dsl;
6pub mod library;
7pub mod project;
8pub mod suite;
9pub mod test;
10
11pub use project::Project;
12pub use suite::{FilteredSuite, Suite};
13pub use test::{Id, Test};
14
15#[cfg(test)]
16mod _dev;
17
18/// The tool name, this is used in various places like config file directories,
19/// manifest tool sections, and more.
20pub const TOOL_NAME: &str = "tytanic";