use crate::common::*; #[test] fn case_1() { // init_logger(); let expr = " f( x )={ 1 jos x<0 0 jos x=0 1 jos x>0 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Auto", expr, "f arvolla x, on yhtä suuri kuin; 3 tapausta, tapaus 1; negatiivinen 1 jos x; on pienempi kuin 0; tapaus 2; 0 jos x, on yhtä suuri kuin 0; tapaus 3; 1 jos x, on suurempi kuin 0;"); } #[test] fn equation_auto() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Auto", expr, "2 riviä, rivi 1; x plus y, on yhtä suuri kuin, 7; rivi 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_case() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Case", expr, "2 tapausta, tapaus 1; x plus y, on yhtä suuri kuin, 7; tapaus 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_constraint() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Constraint", expr, "2 ehtoa, ehto 1; x plus y, on yhtä suuri kuin, 7; ehto 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_equation() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Equation", expr, "2 yhtälöä, yhtälö 1; x plus y, on yhtä suuri kuin, 7; yhtälö 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_line() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Line", expr, "2 riviä, rivi 1; x plus y, on yhtä suuri kuin, 7; rivi 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_none() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "None", expr, "2, x plus y, on yhtä suuri kuin, 7; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_row() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Row", expr, "2 riviä, rivillä 1; x plus y, on yhtä suuri kuin, 7; rivillä 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); } #[test] fn equation_step() { let expr = " x+y = 7 2x+3y = 17 "; test_ClearSpeak("fi", "ClearSpeak_MultiLineLabel", "Step", expr, "2 vaihetta, vaihe 1; x plus y, on yhtä suuri kuin, 7; vaihe 2; 2 x plus 3 y, on yhtä suuri kuin, 17;"); }