1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-04 17:40:47 +00:00
plantuml/test/net/sourceforge/plantuml/math/Math07Test.java
2021-06-27 18:50:40 +02:00

19 lines
432 B
Java

package net.sourceforge.plantuml.math;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class Math07Test {
private final String math = "[[a,b],[c,d]]";
private final String expected = "{\\left[\\begin{matrix}{a}&{b}\\\\{c}&{d}\\end{matrix}\\right]}";
@Test
public void testJava() {
final String res = new ASCIIMathTeXImg().getTeX(math);
assertEquals(expected, res);
}
}