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;
10pub mod world_builder;
11
12pub use project::Project;
13pub use suite::FilteredSuite;
14pub use suite::Suite;
15pub use test::Id;
16pub use test::TemplateTest;
17pub use test::UnitTest;
18
19/// The tool name, this is used in various places like config file directories,
20/// manifest tool sections, and more.
21pub const TOOL_NAME: &str = "tytanic";