#type #generic #parameters #macro #test

macro typed_test_gen

Macros to help generate tests from functions with a generic type parameter

2 releases

new 0.1.1 Jul 20, 2024
0.1.0 Sep 1, 2023

#167 in #parameters

Download history 23/week @ 2024-03-29 3/week @ 2024-04-05 24/week @ 2024-04-12 2/week @ 2024-04-19 34/week @ 2024-05-10 62/week @ 2024-05-17 127/week @ 2024-05-24 83/week @ 2024-05-31 122/week @ 2024-06-07 95/week @ 2024-06-14 114/week @ 2024-06-21 108/week @ 2024-06-28 89/week @ 2024-07-05 77/week @ 2024-07-12

404 downloads per month
Used in twibint

GPL-3.0-only

16KB
101 lines

typed_test_gen

crate documentation

Rust crate for defining a macro that automatically specializes generic tests on provided types. This is useful when we want to write identical tests with different underlying types. This crate provide the syntax #[test_with(Type1, Type2)] which will instantiate 2 tests: one on Type1, the other on Type2. Those types could be any path to any generic type like module::something::Type<Gen>.

An example is better than words:

#[test_with(u32, u64, char)]
fn test_vec<T>() {
    let vec = Vec::<T>::with_capacity(10);
    assert_eq!(vec.len(), 0);
    assert!(vec.capacity() >= 10);
}

This code will generate 3 tests function: _specialized__test_vec__u32_, _specialized__test_vec__u64_, and _specialized__test_vec__char_.

This support adding the attribute #[should_panic] to the definition.

#[test_with(u32, u64, char)]
#[should_panic]
fn test_vec_fail<T>() {
    let vec = Vec::<T>::with_capacity(10);
    assert_eq!(vec.len(), 0);
    assert!(vec.capacity() < 10);
}

Dependencies

~285–740KB
~18K SLoC