16 releases

0.1.14 Jul 17, 2022
0.1.12 Jul 15, 2022
0.1.10 Jun 28, 2022
0.1.4 May 9, 2022
0.0.3 Nov 29, 2021

#117 in Development tools

Download history 286/week @ 2023-02-02 696/week @ 2023-02-09 1035/week @ 2023-02-16 767/week @ 2023-02-23 263/week @ 2023-03-02 794/week @ 2023-03-09 2093/week @ 2023-03-16 700/week @ 2023-03-23 280/week @ 2023-03-30 210/week @ 2023-04-06 855/week @ 2023-04-13 862/week @ 2023-04-20 1062/week @ 2023-04-27 523/week @ 2023-05-04 175/week @ 2023-05-11 120/week @ 2023-05-18

1,898 downloads per month
Used in 56 crates (3 directly)

MIT license

5.5MB
159K SLoC

Module :: wtest_basic

experimental rust-status docs.rs Open in Gitpod discord

Tools for writing and running tests. The most basic things.

Sample

use wtest_basic::*;

//

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 wtest_basic --dev

Try out from the repository

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

Dependencies

~11MB
~303K SLoC