/// Tests for geometry listed in intent /// ABC as mtext and as separated letters use crate::common::*; #[test] fn arc() { let expr = " BC "; test("fi", "SimpleSpeak", expr, "kaari iso b iso c"); } #[test] fn ray() { let expr = " XY¯ "; test("fi", "SimpleSpeak", expr, "jana iso x iso y"); } #[test] fn arc_mtext() { let expr = " BC "; test("fi", "SimpleSpeak", expr, "kaari iso b iso c"); } #[test] fn ray_mtext() { let expr = " XY "; test("fi", "SimpleSpeak", expr, "puolisuora iso x iso y"); }