diff --git a/NGCC/src/Exec.java b/NGCC/src/Exec.java index 62821e7..64378e4 100644 --- a/NGCC/src/Exec.java +++ b/NGCC/src/Exec.java @@ -37,6 +37,7 @@ public class Exec implements Callable { @Option(names= {"-v","--version"}, versionHelp = true, arity = "0", order = 1, description = "Displays version info") boolean version; // Paramètre associé (versionHelp génere l'aide de version automatiquement) + public static void main(String[] args) throws InterruptedException { // Système de subcommand semblable à celui de git permettant d'appeler les classes relatives @@ -53,6 +54,7 @@ public class Exec implements Callable { cmd.execute(args); } + @Override public Void call() throws Exception { diff --git a/NGCC/src/commands/Read.java b/NGCC/src/commands/Read.java index 36fe516..e1a5eb6 100644 --- a/NGCC/src/commands/Read.java +++ b/NGCC/src/commands/Read.java @@ -77,10 +77,11 @@ public class Read implements Callable { // bar.update(0, 1000); // for(int i=0;i<1000;i++) { // // do something! +// //imgList.lenght * temps estimé par img // for(int j=0;j<10000000;j++) // for(int p=0;p<10000000;p++); // // update the progress bar -// bar.update(i, 1000); +// bar.update(i, 1000); // On ajoute 100/imgList.length à chaque temps estimé par image // } // // System.out.println("\nCopies correction succeed !\n"); @@ -88,12 +89,14 @@ public class Read implements Callable { //*************************************************** + System.out.println("\nRead mode activated ...\n"); // Debug des paramètres à exploiter plus tard System.out.println("Update : "+step +"\n"+ "Verbose : "+vb_level +"\n"+ "Directory : "+directory_name +"\n"+ "Result : "+result_name +"\n"+ "Source : "+source_path +"\n"); + // ********VOIR EQUIPE******** @@ -101,6 +104,7 @@ public class Read implements Callable { // List imgList = PdfConvertor.toImage(directory_name); //retourne liste d'images // // CSV.setConfig(source_path); +// // Map resultMap = OCR.read(imgList); // retourne HMap nom - note par ex // // ExportCSV.createCSV(resultMap,result_name); // crée fichier csv selon HMAp avec le nom donné diff --git a/NGCC/tests/TestExec.java b/NGCC/tests/TestExec.java new file mode 100644 index 0000000..e14a506 --- /dev/null +++ b/NGCC/tests/TestExec.java @@ -0,0 +1,19 @@ +import static org.junit.jupiter.api.Assertions.*; + +import org.junit.jupiter.api.Test; + +import picocli.CommandLine; + + +class TestExec { + + @Test + void test() throws InterruptedException { + + Exec exec = new Exec(); + + + //Exec.main(new String[] {}); + } + +}