mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
14 lines
278 B
Rust
14 lines
278 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![""])); }
|