test_tools 0.19.1

Tools for writing and running tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Simple test to verify debug assertion functions are available

#[ test ]
fn test_debug_assertion_functions_available()
{
  // Test that debug assertion functions can be called
  test_tools ::debug_assert_identical!(42, 42);
  test_tools ::debug_assert_id!(42, 42);
  test_tools ::debug_assert_not_identical!(42, 43);
  test_tools ::debug_assert_ni!(42, 43);
}