/// Tests for geometry listed in intent
/// ABC as mtext and as separated letters
use crate::common::*;
#[test]
fn arc() {
let expr = "";
test("en", "SimpleSpeak", expr, "arc cap b cap c");
}
#[test]
fn ray() {
let expr = "";
test("en", "SimpleSpeak", expr, "line segment cap x cap y");
}
#[test]
fn arc_mtext() {
let expr = "";
test("en", "SimpleSpeak", expr, "arc cap b cap c");
}
#[test]
fn ray_mtext() {
let expr = "";
test("en", "SimpleSpeak", expr, "ray cap x cap y");
}