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
{{{
}}}
*/
public class GML0000_Test extends GraphmlTest {
@Test
void testSimple() throws IOException {
final String xml = getXmlAndCheckXmlAndDescription("(1 entities)");
// Those tests are ULGY: please improve them!
assertTrue(xml.contains(""));
assertTrue(xml.contains(""));
}
}