ajout repertoire jar

This commit is contained in:
Louis Calas 2019-09-26 21:38:13 +02:00
parent 3eb6ddff90
commit 9d943c4194
3 changed files with 26 additions and 1 deletions

View File

@ -37,6 +37,7 @@ public class Exec implements Callable <Void> {
@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 <Void> {
cmd.execute(args);
}
@Override
public Void call() throws Exception {

View File

@ -77,10 +77,11 @@ public class Read implements Callable <Void> {
// 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 <Void> {
//***************************************************
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 <Void> {
// 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é

19
NGCC/tests/TestExec.java Normal file
View File

@ -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[] {});
}
}