• Home
Name Date Size #Lines LOC

..--

examples/06-Sep-2024-13090

src/06-Sep-2024-1,006621

tests/06-Sep-2024-928780

Android.bpD06-Sep-2024709 2624

CHANGELOG.mdD06-Sep-20243.9 KiB10480

Cargo.lockD06-Sep-20247.8 KiB315279

Cargo.tomlD06-Sep-20241.3 KiB5346

Cargo.toml.origD06-Sep-2024784 2924

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

METADATAD06-Sep-2024440 2120

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-2024122 65

README.mdD06-Sep-20241.7 KiB3823

cargo_embargo.jsonD06-Sep-202425 43

README.md

1# libtest-mimic
2
3[<img alt="CI status of master" src="https://img.shields.io/github/workflow/status/LukasKalbertodt/libtest-mimic/CI/master?label=CI&logo=github&logoColor=white&style=for-the-badge" height="23">](https://github.com/LukasKalbertodt/libtest-mimic/actions?query=workflow%3ACI+branch%3Amaster)
4[<img alt="Crates.io Version" src="https://img.shields.io/crates/v/libtest-mimic?logo=rust&style=for-the-badge" height="23">](https://crates.io/crates/libtest-mimic)
5[<img alt="docs.rs" src="https://img.shields.io/crates/v/libtest-mimic?color=blue&label=docs&style=for-the-badge" height="23">](https://docs.rs/libtest-mimic)
6
7Write your own test harness that looks and behaves like the built-in test harness (used by `rustc --test`)!
8
9This is a simple and small testing framework that mimics the original `libtest`.
10That means: all output looks pretty much like `cargo test` and most CLI arguments are understood and used.
11With that plumbing work out of the way, your test runner can focus on the actual testing.
12(MSRV: 1.60)
13
14See [**the documentation**](https://docs.rs/libtest-mimic) or [the `examples/` folder](/examples) for more information.
15
16
17<p align="center">
18    <img src=".github/readme.png" width="95%"></img>
19</p>
20
21
22---
23
24## License
25
26Licensed under either of
27
28 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
29 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
30
31at your option.
32
33### Contribution
34
35Unless you explicitly state otherwise, any contribution intentionally submitted
36for inclusion in the work by you, as defined in the Apache-2.0 license, shall
37be dual licensed as above, without any additional terms or conditions.
38