6 releases

0.1.5 Jul 15, 2022
0.1.4 Jun 18, 2022
0.1.2 May 25, 2022

#128 in Development tools

Download history 87/week @ 2022-11-28 151/week @ 2022-12-05 206/week @ 2022-12-12 715/week @ 2022-12-19 463/week @ 2022-12-26 53/week @ 2023-01-02 301/week @ 2023-01-09 709/week @ 2023-01-16 581/week @ 2023-01-23 648/week @ 2023-01-30 599/week @ 2023-02-06 255/week @ 2023-02-13 1161/week @ 2023-02-20 438/week @ 2023-02-27 312/week @ 2023-03-06 1159/week @ 2023-03-13

3,168 downloads per month
Used in 53 crates

MIT license

2MB
55K SLoC

Module :: test_tools

experimental rust-status docs.rs Open in Gitpod discord

Tools for writing and running tests.

Sample

use test_tools::*;

tests_impls!
{
  fn pass1()
  {
    assert_eq!( true, true );
  }

  //

  fn pass2()
  {
    assert_eq!( 1, 1 );
  }
}

//

tests_index!
{
  pass1,
  pass2,
}

To add to your project

cargo add test_tools --dev

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/test_trivial
cargo run

Dependencies

~16MB
~438K SLoC