Update doc and fix weak problems

This commit is contained in:
2026-04-29 11:54:29 +02:00
parent 92f9a3eca4
commit ed259faa65
87 changed files with 3843 additions and 102 deletions

View File

@@ -1,15 +1,20 @@
package ecoparasite.svg;
import ecoparasite.svg.elements.Element;
import ecoparasite.svg.elements.ElementsFactory;
import ecoparasite.svg.elements.Text;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import java.util.ArrayList;
class SVGFactoryTest {
@Test
public void generateSVGAxes(){
// SVGFactory.createSVG( ElementsFactory.SVGAxes() );
void generateTestSVG(){
Element t = new Text( new Coordonnees(100,100), "Ceci est un test", ElementsFactory.COLOR_BLACK, 48 );
ArrayList<Element> elements = new ArrayList<>();
elements.add(t);
SVGFactory.createSVG( elements, "test" );
}
}