Add Pdf.java et Page.java

A compléter + Tests unitaires avec JUnit
This commit is contained in:
LucasV-IUT
2021-11-17 19:03:39 +01:00
parent cadafd8c1e
commit e4fb82ca89
4 changed files with 166 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package lecteur_pdf.document;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class PdfTest {
@Test
void getNbPages() {
}
@Test
void getRenderView() {
}
}