test_tools 0.19.1

Tools for writing and running tests.
Documentation
use test_tools :: *;

//

test_tools ::tests_impls!
{
  fn pass()
  {
  assert_eq!( true, true );
 }
}

//

test_tools ::tests_index!
{
  pass,
}

#[ allow( dead_code ) ]
fn main()
{
}