mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
15 lines
435 B
Rust
15 lines
435 B
Rust
use clap::App;
|
|
use criterion::{criterion_group, criterion_main, Criterion};
|
|
|
|
pub fn build_empty(c: &mut Criterion) {
|
|
c.bench_function("build_empty", |b| b.iter(|| App::new("claptests")));
|
|
}
|
|
|
|
pub fn parse_empty(c: &mut Criterion) {
|
|
c.bench_function("parse_empty", |b| {
|
|
b.iter(|| App::new("claptests").get_matches_from(vec![""]))
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, build_empty, parse_empty);
|
|
criterion_main!(benches);
|