1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-16 09:29:00 +00:00
plantuml/test/nonreg/simple/A0000_Test.java
2021-03-23 18:14:35 +01:00

28 lines
351 B
Java

package nonreg.simple;
import java.io.IOException;
import org.junit.jupiter.api.Test;
import nonreg.BasicTest;
/*
Test diagram MUST be put between triple quotes
"""
@startuml
Alice -> Bob : Hello
@enduml
"""
*/
public class A0000_Test extends BasicTest {
@Test
void testSimple() throws IOException {
checkImage("(2 participants)");
}
}