1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-02 00:20:48 +00:00
plantuml-server/src/test/java/net/sourceforge/plantuml/servlet/AllTests.java
Florian e5d11fb89a update all dependencies (maven artifacts)
- PDF dependency was missing in the pom file the JDK8
  * We should think about creating a parent pom - in that case all plantuml dependencies could be in the parent pom and we would only the mantain one pom file.
    (It is also possible to drop the Java 8 support.)
  * Why do we not have any PDF tests?
- add rule to ignore version update hint with `-dev` followed by a dot and date (e.g. `0.37.0-dev.20230308`)
- migration from JUnit4 to JUnit5
2023-05-05 17:33:39 -04:00

23 lines
479 B
Java

package net.sourceforge.plantuml.servlet;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
@Suite
@SelectClasses({
TestAsciiArt.class,
TestAsciiCoder.class,
TestCharset.class,
TestCheck.class,
TestEPS.class,
TestImage.class,
TestLanguage.class,
TestMap.class,
TestMultipageUml.class,
TestOldProxy.class,
TestProxy.class,
TestSVG.class,
TestWebUI.class
})
public class AllTests {}