/// Tests for geometry listed in intent /// ABC as mtext and as separated letters use crate::common::*; #[test] fn arc() { let expr = " BC "; test("zh-tw", "SimpleSpeak", expr, "弧 大寫 b 大寫 c"); } #[test] fn ray() { let expr = " XY¯ "; test("zh-tw", "SimpleSpeak", expr, "線段 大寫 x 大寫 y"); } #[test] fn arc_mtext() { let expr = " BC "; test("zh-tw", "SimpleSpeak", expr, "弧 大寫 b 大寫 c"); } #[test] fn ray_mtext() { let expr = " XY "; test("zh-tw", "SimpleSpeak", expr, "向量 大寫 x 大寫 y"); }