package nonreg.xmi.clazz; import java.io.IOException; import org.junit.jupiter.api.Test; import nonreg.xmi.XmiTest; /* https://forum.plantuml.net/12972/only-the-first-line-any-component-description-exported-file Test diagram MUST be put between triple quotes """ @startuml class A { } class B{ } A -->B @enduml """ Expected result MUST be put between triple brackets {{{star }}}star {{{argo }}}argo */ public class XMI0002_Test extends XmiTest { @Test void testSimple() throws IOException { checkXmlAndDescription("(2 entities)"); } }