возможность добавлять хедеры произвольного расширения в тесты
This commit is contained in:
2024-06-08 19:45:37 +03:00
parent 07c479ad2b
commit 12f58bdde2
3 changed files with 6 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ public class Visualiser extends Component {
//http://www.seostella.com/ru/article/2012/02/05/formatirovanie-daty-v-java.html
@Override
public void GetVersionInfo() {
version = 1105;
version = 1107;
String pattern = "MMM dd yyyy HH:mm:ss";
DateFormat df = new SimpleDateFormat(pattern, Locale.ENGLISH);
date_text = df.format(getClassBuildTime());

View File

@@ -111,6 +111,10 @@ public class CreateTestFromDirectory extends Pass_2021<Test> {
headers++;
project_files.add(projectFile);
break;
case none:
project_files.add(projectFile);
other_project_files++;
break;
default:
other_project_files++;
break;