25 lines
417 B
Java
25 lines
417 B
Java
package ecoparasite.svg.SVGFactory;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class SVGFactoryTest {
|
|
|
|
@Test
|
|
void createSVGCode() {
|
|
|
|
//String ret = SVGFactory.createSVGCode();
|
|
|
|
//System.out.println(ret);
|
|
}
|
|
|
|
@Test
|
|
void testCreateFile() {
|
|
|
|
//String ret = SVGFactory.createSVGCode();
|
|
|
|
//SVGFactory.createFile(ret);
|
|
|
|
}
|
|
} |