Dummy tests
This commit is contained in:
parent
71b9e01059
commit
89fce0e0c2
2 changed files with 36 additions and 0 deletions
21
src/test/java/writer2latex/rdf/DocumentStructureTests.java
Normal file
21
src/test/java/writer2latex/rdf/DocumentStructureTests.java
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
package writer2latex.rdf;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
import java.util.Vector;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import writer2latex.xhtml.XhtmlDocument;
|
||||||
|
|
||||||
|
public class DocumentStructureTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void DocumentStructureExists() {
|
||||||
|
|
||||||
|
String fileName = "";
|
||||||
|
Vector<XhtmlDocument> files = new Vector<XhtmlDocument>();
|
||||||
|
DocumentStructure docStructure = new DocumentStructure(files , fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
15
src/test/java/writer2latex/rdf/MetadataTests.java
Normal file
15
src/test/java/writer2latex/rdf/MetadataTests.java
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
package writer2latex.rdf;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class MetadataTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void MetadataExists() {
|
||||||
|
Metadata tester = new Metadata();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue