assertx 1.1.7

Additional test assertions
Documentation
error[E0432]: unresolved import `assertx::assert_logs_contain_in_order`
 --> $DIR/assert_logs_contain_in_order.rs:1:5
  |
1 | use assertx::assert_logs_contain_in_order;
  |     ^^^^^^^^^----------------------------
  |     |        |
  |     |        help: a similar name exists in the module: `assert_contains_in_order`
  |     no `assert_logs_contain_in_order` in the root

error: cannot determine resolution for the macro `assert_logs_contain_in_order`
  --> $DIR/assert_logs_contain_in_order.rs:13:5
   |
13 |     assert_logs_contain_in_order!(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: import resolution is stuck, try simplifying macro imports

error[E0425]: cannot find function `setup_logging_test` in crate `assertx`
 --> $DIR/assert_logs_contain_in_order.rs:5:25
  |
5 |     let logs = assertx::setup_logging_test();
  |                         ^^^^^^^^^^^^^^^^^^ not found in `assertx`

warning: unused import: `Level`
 --> $DIR/assert_logs_contain_in_order.rs:2:44
  |
2 | use log::{debug, error, info, trace, warn, Level};
  |                                            ^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default