1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-28 22:20:49 +00:00
plantuml/test/nonreg/simple/A0005_Test.java
2021-09-19 22:50:22 +02:00

61 lines
791 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
title title
legend legend
footer footer
header header
caption caption
<style>
document {
BackGroundColor orange
}
title {
BackGroundColor yellow
}
legend {
BackGroundColor green
}
footer {
BackGroundColor blue
FontColor red
FontSize 15
}
header {
BackGroundColor red
}
caption {
BackGroundColor purple
}
</style>
class Bob {
hello
}
class Sally
Sally --> Bob
@enduml
"""
*/
public class A0005_Test extends BasicTest {
@Test
void testSimple() throws IOException {
checkImage("(2 entities)");
}
}