1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-12-20 09:59:24 +00:00
plantuml/test/nonreg/simple/ChenRankDir_Test.java

39 lines
473 B
Java
Raw Normal View History

package nonreg.simple;
import java.io.IOException;
import org.junit.jupiter.api.Test;
import nonreg.BasicTest;
/*
Test diagram MUST be put between triple quotes
"""
@startchen
left to right direction
entity Person {
}
entity Location {
}
relationship Birthplace {
}
Person -N- Birthplace
Birthplace -1- Location
@endchen
"""
*/
public class ChenRankDir_Test extends BasicTest {
@Test
void testSimple() throws IOException {
checkImage("(3 entities)");
}
}