Files
ecoparasite-data-analyse/tests/ecoparasite/svg/SVGFactoryTest.java

15 lines
298 B
Java
Raw Permalink Normal View History

2026-04-08 14:47:42 +02:00
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() );
}
}