provola-core 0.2.0

A tool for quick development/test cycle in any language
Documentation
mod actions;
mod build;
mod errors;
mod exec;
mod lang;
pub mod report;
mod reporter;
mod result;
pub mod test;
pub mod test_runners;
mod watch;

pub use actions::Action;
pub use actions::Source;
pub use actions::TestDataIn;
pub use actions::TestDataOut;
pub use errors::Error;
pub use exec::Executable;
pub use lang::Language;
pub use report::CoreFailure;
pub use report::CoreReport;
pub use report::CoreTestCase;
pub use report::CoreTestSuite;
pub use reporter::Error as ReporterError;
pub use reporter::Reporter;
pub use result::Reason;
pub use result::TestResult;
pub use test::xunit::AvailableTests;
pub use watch::ProvolaWatcher as Watcher;
pub use watch::WatchOptions;