mirror of
https://github.com/clap-rs/clap
synced 2024-11-14 16:47:21 +00:00
18 lines
286 B
Rust
18 lines
286 B
Rust
#![feature(test)]
|
|
|
|
extern crate clap;
|
|
extern crate 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![""]));
|
|
}
|