Replace QProcessMetaData.addStep and addOptionalStep with .withStep and .withOptionalStep

This commit is contained in:
2025-07-14 20:03:29 -05:00
parent fc4b34306f
commit 80e1d8143c
21 changed files with 62 additions and 62 deletions

View File

@ -204,7 +204,7 @@ public class TestUtils
.withName(PROCESS_NAME_GET_PERSON_INFO)
.withLabel("Get Person Info")
.withTableName(TABLE_NAME_PERSON)
.addStep(new QFrontendStepMetaData()
.withStep(new QFrontendStepMetaData()
.withName("enterInputs")
.withLabel("Person Info Input")
.withComponent(new QFrontendComponentMetaData().withType(QComponentType.EDIT_FORM))
@ -230,11 +230,11 @@ public class TestUtils
"""))
))
.addStep(new QBackendStepMetaData()
.withStep(new QBackendStepMetaData()
.withName("execute")
.withCode(new QCodeReference(GetPersonInfoStep.class)))
.addStep(new QFrontendStepMetaData()
.withStep(new QFrontendStepMetaData()
.withName("dummyStep")
);