use dsntk_recognizer::recognize; #[test] fn _0001() { assert_eq!(" expected characters not found: ┌", recognize("", false).unwrap_err().to_string()); } #[test] fn _0002() { assert_eq!(" expected characters not found: ┌", recognize(" ", false).unwrap_err().to_string()); } #[test] fn _0003() { assert_eq!( " expected characters not found: ┌", recognize(" \n \n ", false).unwrap_err().to_string() ); } #[test] fn _0004() { assert_eq!( " expected characters not found: ┌", recognize(" \t \r ", false).unwrap_err().to_string() ); } #[test] fn _0005() { let input = r#" There is some text, but no decision table. "#; assert_eq!(" expected characters not found: ┌", recognize(input, false).unwrap_err().to_string()); }