typos/benches/corrections.rs
2019-08-08 10:24:50 -05:00

27 lines
753 B
Rust

#![feature(test)]
extern crate test;
#[bench]
fn load_corrections(b: &mut test::Bencher) {
b.iter(|| typos_dict::BuiltIn::new());
}
#[bench]
fn correct_word_hit(b: &mut test::Bencher) {
let corrections = typos_dict::BuiltIn::new();
let input = typos::tokens::Word::new("successs", 0).unwrap();
assert_eq!(
corrections.correct_word(input),
Some(std::borrow::Cow::Borrowed("successes"))
);
b.iter(|| corrections.correct_word(input));
}
#[bench]
fn correct_word_miss(b: &mut test::Bencher) {
let corrections = typos_dict::BuiltIn::new();
let input = typos::tokens::Word::new("success", 0).unwrap();
assert_eq!(corrections.correct_word(input), None);
b.iter(|| corrections.correct_word(input));
}