Java: update CSV rows to dot-separated syntax

This commit is contained in:
Asger Feldthaus
2022-02-05 22:55:37 +01:00
parent 7f808710ec
commit a121b73181
42 changed files with 2500 additions and 2502 deletions

View File

@@ -165,7 +165,7 @@ private class DefaultGetMethod extends GetMethod {
override string getCsvModel() {
result =
"generatedtest;Test;false;" + this.getName() + ";(Object);;" +
getComponentSpec(SummaryComponent::content(c)) + " of Argument[0];ReturnValue;value"
getComponentSpec(SummaryComponent::content(c)) + "Argument[0].;ReturnValue;value"
}
}
@@ -361,7 +361,7 @@ private class DefaultGenMethod extends GenMethod {
override string getCsvModel() {
result =
"generatedtest;Test;false;" + this.getName() + ";(Object);;Argument[0];" +
getComponentSpec(SummaryComponent::content(c)) + " of ReturnValue;value"
getComponentSpec(SummaryComponent::content(c)) + "ReturnValue.;value"
}
}