mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-09 15:20:57 +00:00
28 lines
351 B
Java
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)");
|
|
}
|
|
|
|
}
|