1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 08:30:49 +00:00

Strange compile error

This commit is contained in:
Arnaud Roques 2021-03-23 18:27:15 +01:00
parent d579f6899f
commit a4f8170d94
2 changed files with 0 additions and 27 deletions

View File

@ -1,26 +0,0 @@
package nonreg;
import java.io.File;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
/*
@startuml
Alice -> Bob : Hello
@enduml
*/
class A0000_Test {
@Test
void testSimple() throws IOException {
final File source = new File("test/nonreg", getClass().getSimpleName() + ".java");
assertTrue(source.exists());
assertTrue(source.canRead());
}
}

View File

@ -23,7 +23,6 @@ import net.sourceforge.plantuml.core.DiagramDescription;
/*
* All non-regression tests must extends BasicTest class.
*
* The tests must have a single test method that call the 'checkImage()' method.
* Diagram to be tested must be stored in the test itself, separated by triple-quoted strings
* The expected result (build using UGraphicDebug) is stored in a class xxxxResult.java, also separated by triple-quoted strings.