This commit is contained in:
Louis Calas 2019-10-11 11:39:58 +02:00
parent d1fe90a906
commit 96792e0894
4 changed files with 2 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 251 KiB

View File

@ -52,7 +52,7 @@ public class Exec implements Callable <Void> {
.addSubcommand("-e", new Evaluate(System.out)) .addSubcommand("-e", new Evaluate(System.out))
.addSubcommand("help", new HelpCommand()); // Aide générée automatiquement par l'API .addSubcommand("help", new HelpCommand()); // Aide générée automatiquement par l'API
cmd.execute(args); //t cmd.execute(args);
} }

View File

@ -21,6 +21,7 @@ public class TestCSV {
void setUp() { void setUp() {
map = new HashMap<String,String>(); map = new HashMap<String,String>();
length = "8"; length = "8";
format = "20";
path = "../export/result.csv"; path = "../export/result.csv";
} }