2023-12-02 19:15:55 +01:00
|
|
|
#![feature(test)]
|
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn short_test_name() {}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn this_is_a_really_long_test_name() {}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
2024-05-24 21:23:12 -04:00
|
|
|
fn short_bench_name(b: &mut test::Bencher) {}
|
2023-12-02 19:15:55 +01:00
|
|
|
|
|
|
|
|
#[bench]
|
2024-05-24 21:23:12 -04:00
|
|
|
fn this_is_a_really_long_bench_name(b: &mut test::Bencher) {}
|