mirror of
https://github.com/octoleo/plantuml.git
synced 2025-01-15 03:53:47 +00:00
19 lines
385 B
Java
19 lines
385 B
Java
package net.sourceforge.plantuml.math;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
class Math01Test {
|
|
|
|
private final String math = "f(x)";
|
|
private final String expected = "{f{{\\left({x}\\right)}}}";
|
|
|
|
@Test
|
|
public void testJava() {
|
|
final String res = new ASCIIMathTeXImg().getTeX(math);
|
|
assertEquals(expected, res);
|
|
}
|
|
|
|
}
|