Dummy tests

This commit is contained in:
Georgy Litvinov 2020-03-03 17:34:49 +01:00
parent 71b9e01059
commit 89fce0e0c2
2 changed files with 36 additions and 0 deletions

View 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);
}
}

View 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();
}
}