15 lines
298 B
Java
15 lines
298 B
Java
|
|
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() );
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|