1
0
mirror of https://github.com/octoleo/plantuml.git synced 2025-02-13 09:29:10 +00:00
2021-06-27 18:50:40 +02:00

19 lines
392 B
Java

package net.sourceforge.plantuml.math;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class Math08Test {
private final String math = "color(red)(x)";
private final String expected = "{\\textcolor{red}{{x}}}";
@Test
public void testJava() {
final String res = new ASCIIMathTeXImg().getTeX(math);
assertEquals(expected, res);
}
}