[][src]Crate ntest

Macros

assert_false

Expects a false expresion. 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 expresion. Otherwise panics.