tytanic_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! The core library of the tytanic test runner.

pub mod config;
pub mod doc;
pub mod dsl;
pub mod library;
pub mod project;
pub mod suite;
pub mod test;

pub use project::Project;
pub use suite::{FilteredSuite, Suite};
pub use test::{Id, Test};

#[cfg(test)]
mod _dev;

/// The tool name, this is used in various places like config file directories,
/// manifest tool sections, and more.
pub const TOOL_NAME: &str = "tytanic";