Write your own test harness that looks and behaves like the built-in test harness (used by rustc --test
)!
This is a simple and small testing framework that mimics the original libtest
(used by rustc --test
). That means: all output looks pretty much like cargo test
and most CLI arguments are understood and used. With that plumbing work out of the way, your test runner can concentrate on the actual testing.
See it in action (with the tidy
example):
```rust extern crate libtest_mimic;
use libtestmimic::{Arguments, Test, Outcome, runtests};
// Parse command line arguments let args = Arguments::from_args();
// Create a list of tests (in this case: three dummy tests) let tests = vec![ Test::test("toph"), Test::test("sokka"), Test { name: "longcomputation".into(), kind: "".into(), isignored: true, is_bench: false, data: (), }, ];
// Run all tests and exit the application appropriatly (in this case, the // test runner is a dummy runner which does nothing and says that all s // passed). run_tests(&args, tests, |test| Outcome::Passed).exit(); ```
For more examples, see examples/
.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.