[][src]Crate ntest

The ntest lib enhances the rust test framework with useful functions and macros

Re-exports

pub use ntest_test_cases::test_case;

Macros

assert_false

Expects a false expression. Otherwise panics.

assert_panics

A panic in Rust is not always implemented via unwinding, but can be implemented by aborting the process as well. This function only catches unwinding panics, not those that abort the process. See the catch unwind documentation for more information.

assert_true

Expects a true expression. Otherwise panics.