typos/benches/corrections.rs

25 lines
732 B
Rust
Raw Normal View History

2019-01-22 17:01:33 -05:00
#![feature(test)]
extern crate test;
#[bench]
fn load_corrections(b: &mut test::Bencher) {
2019-04-16 19:27:55 -04:00
b.iter(|| defenestrate::Dictionary::new());
2019-01-22 17:01:33 -05:00
}
#[bench]
fn correct_word_hit(b: &mut test::Bencher) {
2019-04-16 19:27:55 -04:00
let corrections = defenestrate::Dictionary::new();
let input = defenestrate::tokens::Word::new("successs", 0).unwrap();
assert_eq!(corrections.correct_word(input), Some("successes"));
b.iter(|| corrections.correct_word(input));
2019-01-22 17:01:33 -05:00
}
#[bench]
fn correct_word_miss(b: &mut test::Bencher) {
2019-04-16 19:27:55 -04:00
let corrections = defenestrate::Dictionary::new();
let input = defenestrate::tokens::Word::new("success", 0).unwrap();
assert_eq!(corrections.correct_word(input), None);
b.iter(|| corrections.correct_word(input));
2019-01-22 17:01:33 -05:00
}