Begin SVG.

This commit is contained in:
2026-04-08 14:47:42 +02:00
parent 2f6164f4c0
commit 110784a530
10 changed files with 474 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package ecoparasite.svg;
import ecoparasite.svg.elements.ElementsFactory;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class SVGFactoryTest {
@Test
public void generateSVGAxes(){
SVGFactory.createSVG( ElementsFactory.SVGAxes() );
}
}