1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-10-01 08:19:05 +00:00
plantuml/test/nonreg/graphml/component/GML0000_Test.java
2022-08-29 18:52:23 +02:00

40 lines
812 B
Java

package nonreg.graphml.component;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.IOException;
import org.junit.jupiter.api.Test;
import nonreg.graphml.GraphmlTest;
/*
Test diagram MUST be put between triple quotes
"""
@startuml
component comp1
@enduml
"""
Expected result MUST be put between triple brackets
{{{
<?xml version="1.0" encoding="UTF-8"?><graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<graph edgedefault="undirected">
<node id="comp1"/>
</graph>
</graphml>
}}}
*/
public class GML0000_Test extends GraphmlTest {
@Test
void testSimple() throws IOException {
checkXmlAndDescription("(1 entities)");
}
}