mathcat 0.7.5

MathCAT: Math Capable Assistive Technology ('Speech and braille from MathML')
Documentation
/// Tests for rules shared between various speech styles:
/// *  this has tests focused on the various alphabets
use crate::common::*;


#[test]
fn special_alphabet_chars() {
  let expr = "<math> <mi>ℌ</mi><mo>,</mo><mi>ℭ</mi></math>";
  test("en", "SimpleSpeak", expr, "fraktur cap h comma fraktur cap c");
  let expr = "<math> <mi>ℍ</mi><mo>,</mo><mi>ℿ</mi></math>";
  test("en", "SimpleSpeak", expr, "double struck cap h comma double struck cap pi");
  let expr = "<math> <mi>ℐ</mi><mo>,</mo><mi>ℳ</mi></math>";
  test("en", "SimpleSpeak", expr, "script cap i comma script cap m");
}

#[test]
fn greek() {
    let expr = "<math> <mi>Α</mi><mo>,</mo><mi>Ω</mi></math>";
    test("en", "SimpleSpeak", expr, "cap alpha comma cap omega");
    let expr = "<math> <mi>α</mi><mo>,</mo><mi>ω</mi></math>";
    test("en", "SimpleSpeak", expr, "alpha comma omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "double struck cap delta, comma double struck cap upsilon");
    let expr = "<math> <mi>α</mi><mo>,</mo><mi>ω</mi></math>";
    test("en", "SimpleSpeak", expr, "alpha comma omega");
}

#[test]
fn cap_cyrillic() {
    let expr = "<math> <mi>А</mi><mo>,</mo><mi>Я</mi></math>";
    test("en", "SimpleSpeak", expr, "cap a comma cap ya");
}

#[test]
fn parenthesized() {
    let expr = "<math> <mi>⒜</mi><mo>,</mo><mi>⒵</mi></math>";
    test("en", "SimpleSpeak", expr, "parenthesized eigh comma parenthesized z");
}

#[test]
fn circled() {
    let expr = "<math> <mi>Ⓐ</mi><mo>,</mo><mi>Ⓩ</mi></math>";
    test("en", "SimpleSpeak", expr, "circled cap eigh comma circled cap z");
    let expr = "<math> <mi>ⓐ</mi><mo>,</mo><mi>ⓩ</mi></math>";
    test("en", "SimpleSpeak", expr, "circled eigh comma circled z");
}

#[test]
fn fraktur() {
    let expr = "<math> <mi>𝔄</mi><mo>,</mo><mi>𝔜</mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur cap eigh comma fraktur cap y");
    let expr = "<math> <mi>𝔞</mi><mo>,</mo><mi>𝔷</mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur eigh comma fraktur z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur cap eigh comma fraktur cap y");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur eigh comma fraktur z");
}

#[test]
fn bold_fraktur() {
    let expr = "<math> <mi>𝕬</mi><mo>,</mo><mi>𝖅</mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur bold cap eigh, comma fraktur bold cap z");
    let expr = "<math> <mi>𝖆</mi><mo>,</mo><mi>𝖟</mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur bold eigh comma fraktur bold z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur bold cap eigh, comma fraktur bold cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "fraktur bold eigh comma fraktur bold z");
}

#[test]
fn double_struck() {
    let expr = "<math> <mi>𝔸</mi><mo>,</mo><mi>𝕐</mi></math>";
    test("en", "SimpleSpeak", expr, "double struck cap eigh, comma double struck cap y");
    let expr = "<math> <mi>𝕒</mi><mo>,</mo><mi>𝕫</mi></math>";
    test("en", "SimpleSpeak", expr, "double struck eigh comma double struck z");
    let expr = "<math> <mi>𝟘</mi><mo>,</mo><mi>𝟡</mi></math>";
    test("en", "SimpleSpeak", expr, "double struck 0 comma double struck 9");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "double struck cap eigh, comma double struck cap y");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "double struck eigh comma double struck z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "double struck 0 comma double struck 9");
}

#[test]
fn script() {
    let expr = "<math> <mi>𝒜</mi><mo>,</mo><mi>𝒵</mi></math>";
    test("en", "SimpleSpeak", expr, "script cap eigh comma script cap z");
    let expr = "<math> <mi>𝒶</mi><mo>,</mo><mi>𝓏</mi></math>";
    test("en", "SimpleSpeak", expr, "script eigh comma script z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "script cap eigh comma script cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "script eigh comma script z");
}

#[test]
fn bold_script() {
    let expr = "<math> <mi>𝓐</mi><mo>,</mo><mi>𝓩</mi></math>";
    test("en", "SimpleSpeak", expr, "script bold cap eigh comma script bold cap z");
    let expr = "<math> <mi>𝓪</mi><mo>,</mo><mi>𝔃</mi></math>";
    test("en", "SimpleSpeak", expr, "script bold eigh comma script bold z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "script bold cap eigh comma script bold cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "script bold eigh comma script bold z");
}

#[test]
fn bold() {
    let expr = "<math> <mi>𝐀</mi><mo>,</mo><mi>𝐙</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi>𝐚</mi><mo>,</mo><mi>𝐳</mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
}

#[test]
fn italic() {
    let expr = "<math> <mi>𝐴</mi><mo>,</mo><mi>𝑍</mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi>𝑎</mi><mo>,</mo><mi>𝑧</mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
}

#[test]
fn sans_serif() {
  let expr = "<math> <mi>𝖠</mi><mo>,</mo><mi>𝖹</mi></math>";
  test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
  let expr = "<math> <mi>𝖺</mi><mo>,</mo><mi>𝗓</mi></math>";
  test("en", "SimpleSpeak", expr, "eigh comma z");
  // MathType private space versions
  let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
  test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
  let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
  test("en", "SimpleSpeak", expr, "eigh comma z");
}

#[test]
fn sans_serif_bold() {
    let expr = "<math> <mi>𝗔</mi><mo>,</mo><mi>𝗭</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi>𝗮</mi><mo>,</mo><mi>𝘇</mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
}

#[test]
fn sans_serif_italic() {
    let expr = "<math> <mi>𝘈</mi><mo>,</mo><mi>𝘡</mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi>𝘢</mi><mo>,</mo><mi>𝘻</mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
}

#[test]
fn sans_serif_bold_italic() {
    let expr = "<math> <mi>𝘼</mi><mo>,</mo><mi>𝙕</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi>𝙖</mi><mo>,</mo><mi>𝙯</mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap eigh comma bold cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold eigh comma bold z");
}

#[test]
fn monospace() {
    let expr = "<math> <mi>𝙰</mi><mo>,</mo><mi>𝚉</mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi>𝚊</mi><mo>,</mo><mi>𝚣</mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "eigh comma z");
}


#[test]
fn bold_greek() {
    let expr = "<math> <mi>𝚨</mi><mo>,</mo><mi>𝛀</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi>𝛂</mi><mo>,</mo><mi>𝛚</mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
}

#[test]
fn bold_greek_others() {
    let expr = "<math> <mi>𝛛</mi><mo>,</mo><mi>𝛡</mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
}


#[test]
fn italic_greek() {
    let expr = "<math> <mi>𝛢</mi><mo>,</mo><mi>𝛺</mi></math>";
    test("en", "SimpleSpeak", expr, "cap alpha comma cap omega");
    let expr = "<math> <mi>𝛼</mi><mo>,</mo><mi>𝜔</mi></math>";
    test("en", "SimpleSpeak", expr, "alpha comma omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "cap alpha comma cap omega");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "alpha comma omega");
}

#[test]
fn italic_greek_others() {
    let expr = "<math> <mi>𝜕</mi><mo>,</mo><mi>𝜛</mi></math>";
    test("en", "SimpleSpeak", expr, "partial derivative comma pi");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "partial derivative comma pi");
}

#[test]
fn bold_italic_greek() {
    let expr = "<math> <mi>𝜜</mi><mo>,</mo><mi>𝜴</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi>𝜶</mi><mo>,</mo><mi>𝝎</mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
}

#[test]
fn bold_italic_greek_others() {
    let expr = "<math> <mi>𝝏</mi><mo>,</mo><mi>𝝕</mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
}

#[test]
fn sans_serif_bold_greek() {
    let expr = "<math> <mi>𝝖</mi><mo>,</mo><mi>𝝮</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi>𝝰</mi><mo>,</mo><mi>𝞈</mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
}

#[test]
fn sans_serif_bold_greek_others() {
    let expr = "<math> <mi>𝞉</mi><mo>,</mo><mi>𝞏</mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
}

#[test]
fn sans_serif_bold_italic_greek() {
    let expr = "<math> <mi>𝞐</mi><mo>,</mo><mi>𝞨</mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi>𝞪</mi><mo>,</mo><mi>𝟂</mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold cap alpha comma bold cap omega");
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold alpha comma bold omega");
}

#[test]
fn sans_serif_bold_italic_greek_others() {
    let expr = "<math> <mi>𝟃</mi><mo>,</mo><mi>𝟉</mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
    // MathType private space versions
    let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
    test("en", "SimpleSpeak", expr, "bold partial derivative, comma bold pi");
}

#[test]
fn pua_regular() {
  let expr = "<math> <mi></mi><mo>,</mo><mi></mi></math>";
  test("en", "SimpleSpeak", expr, "cap eigh comma cap z");
}

#[test]
fn turned() {
    let expr = "<math> <mi>Ⅎ</mi><mo>,</mo><mi>⅄</mi></math>";
    test("en", "SimpleSpeak", expr, "turned cap f comma turned sans-serif cap y");
  }

#[test]
fn enclosed_numbers() {
  let expr = "<math> <mi>①</mi><mo>,</mo><mi>⑨</mi></math>";
  test("en", "SimpleSpeak", expr, "circled 1 comma circled 9");
  let expr = "<math> <mi>⑴</mi><mo>,</mo><mi>⑼</mi></math>";
  test("en", "SimpleSpeak", expr, "parenthesized 1 comma parenthesized 9");
  let expr = "<math> <mi>⒈</mi><mo>,</mo><mi>⒐</mi></math>";
  test("en", "SimpleSpeak", expr, "1 with period comma 9 with period");
  let expr = "<math> <mi>⓵</mi><mo>,</mo><mi>⓽</mi></math>";
  test("en", "SimpleSpeak", expr, "double circled 1 comma double circled 9");
}