dylint_testing

This crate provides convenient access to the compiletest_rs package for testing Dylint libraries.

Specifically, this crate provides the following three functions. Note: If your test has dependencies, you must use ui_test_example or ui_test_examples. See the questionmarkin_expression example in this repository.

For most situations, you can add the following to your library's lib.rs file:

```rust

[test]

fn ui() { dylinttesting::uitest( env!("CARGOPKGNAME"), &std::path::Path::new(env!("CARGOMANIFESTDIR")).join("ui"), ); } ```

And include one or more .rs and .stderr files in a ui directory alongside your library's src directory. See the examples in this repository.

Additional documentation on compiletest_rs can be found in its repository.