package nonreg.xmi.component;
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
component test
note top of test: first line1\nsecond line2
note bottom of test
first line3
second line4
end note
@enduml
"""
Expected result MUST be put between triple brackets
{{{star
}}}star
{{{argo
}}}argo
*/
public class XMI0001_Test extends XmiTest {
@Test
void testSimple() throws IOException {
checkXmlAndDescription("(3 entities)");
}
}