Запись дат начала и окончания задач.

This commit is contained in:
2023-11-14 17:35:59 +03:00
parent 21914e3ba1
commit dbd0fd0ef5
5 changed files with 26 additions and 15 deletions

View File

@@ -16,6 +16,7 @@ import java.nio.charset.Charset;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Date;
import java.util.Vector;
import static java.lang.Character.isDigit;
@@ -349,6 +350,7 @@ public class PerformSapforTask extends Pass_2021<SapforTask> {
//-------------------------------------------------->>
@Override
protected void body() throws Exception {
target.StartDate = new Date().getTime();
target.versions.add(new SapforVersion_json(target.test_description, "исходная"));
for (PassCode_2021 code : sapforConfiguration_json.codes) {
if (parse()) {
@@ -359,5 +361,6 @@ public class PerformSapforTask extends Pass_2021<SapforTask> {
} else
break;
}
target.ChangeDate = new Date().getTime();
}
}