generic-tests

Crates.iogeneric-tests
lib.rsgeneric-tests
version0.1.3
sourcesrc
created_at2020-06-24 02:17:51.001948
updated_at2024-11-08 08:19:55.531865
descriptionProcedural macro to define tests and benchmarks generically
homepage
repositoryhttps://github.com/mzabaluev/generic-tests/
max_upload_size
id257429
size71,886
Mikhail Zabaluev (mzabaluev)

documentation

README

Procedural macro support for generic test definitions

The procedural attribute macro provided by this crate allows the test writer to reuse code between test cases or benchmarks that use the same test protocol with different types under test. As in general programming with Rust, this is achieved by using generic parameters and trait bounds. The specific test cases are expanded in multiple submodules with type arguments provided in another attribute.

Features

  • Instantiates tests and benchmarks for the built-in test framework.
  • Supports arbitrary test function attributes provided by other crates.
  • A customizable set of attributes is copied from the generic test function to its instantiations.
  • Supports async tests.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 88

cargo fmt