clap/benches/01_default.rs
2020-02-07 07:34:01 +01:00

14 lines
246 B
Rust

#![feature(test)]
use clap::App;
use test::Bencher;
#[bench]
fn build_app(b: &mut Bencher) {
b.iter(|| App::new("claptests"));
}
#[bench]
fn parse_clean(b: &mut Bencher) {
b.iter(|| App::new("claptests").get_matches_from(vec![""]));
}