| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| examples/ | 04-Jul-2025 | - | 130 | 90 | ||
| src/ | 04-Jul-2025 | - | 1,010 | 624 | ||
| tests/ | 04-Jul-2025 | - | 957 | 798 | ||
| .android-checksum.json | D | 04-Jul-2025 | 2.1 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 1.8 KiB | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 954 | 37 | 33 | |
| CHANGELOG.md | D | 04-Jul-2025 | 4.3 KiB | 114 | 87 | |
| Cargo.lock | D | 04-Jul-2025 | 11.4 KiB | 439 | 387 | |
| Cargo.toml | D | 04-Jul-2025 | 1.3 KiB | 53 | 46 | |
| LICENSE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
| LICENSE-APACHE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
| METADATA | D | 04-Jul-2025 | 465 | 18 | 17 | |
| MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1.7 KiB | 37 | 22 | |
| cargo_embargo.json | D | 04-Jul-2025 | 51 | 4 | 4 |
README.md
1# libtest-mimic 2 3[<img alt="CI status of master" src="https://img.shields.io/github/actions/workflow/status/LukasKalbertodt/libtest-mimic/ci.yml?branch=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 13See [**the documentation**](https://docs.rs/libtest-mimic) or [the `examples/` folder](/examples) for more information. 14 15 16<p align="center"> 17 <img src=".github/readme.png" width="95%"></img> 18</p> 19 20 21--- 22 23## License 24 25Licensed under either of 26 27 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) 28 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) 29 30at your option. 31 32### Contribution 33 34Unless you explicitly state otherwise, any contribution intentionally submitted 35for inclusion in the work by you, as defined in the Apache-2.0 license, shall 36be dual licensed as above, without any additional terms or conditions. 37