private List correctRegistryRegulations()

in src/it/java/com/epam/digital/data/platform/registry/regulation/validation/cli/RegistryRegulationCommandLineRunnerTest.java [454:495]


  private List<String> correctRegistryRegulations() {
    return List.of(
        VALIDATE_COMMAND,
        argOf(CommandLineArg.GLOBAL_VARS,
            testResourcePathOf("registry-regulation/correct/global-vars.yml")),
        argOf(CommandLineArg.BP_AUTH,
            testResourcePathOf("registry-regulation/correct/bp-auth.yml")),
        argOf(CommandLineArg.BP_TREMBITA,
            testResourcePathOf("registry-regulation/correct/bp-trembita.yml")),
        argOf(CommandLineArg.BP_TREMBITA_CONFIG,
            testResourcePathOf("registry-regulation/correct/configuration.yml")),
        argOf(CommandLineArg.ROLES, testResourcePathOf("registry-regulation/correct/officer.yml")),
        argOf(CommandLineArg.BPMN,
            testResourcePathOf("registry-regulation/correct/process.bpmn"),
            testResourcePathOf("registry-regulation/correct/process-for-validating-inputs.bpmn"),
            testResourcePathOf("registry-regulation/correct/trembita-process.bpmn")),
        argOf(CommandLineArg.DMN, testResourcePathOf("registry-regulation/correct/rule.dmn")),
        argOf(CommandLineArg.FORMS,
            testResourcePathOf("registry-regulation/correct/ui-form.json")),
        argOf(CommandLineArg.DATAFACTORY_SETTINGS,
            testResourcePathOf("registry-regulation/correct/settings.yaml")),
        argOf(CommandLineArg.LIQUIBASE,
            testResourcePathOf("registry-regulation/correct/test-main-liquibase.xml")),
        argOf(CommandLineArg.EMAIL_NOTIFICATION_TEMPLATE,
            testResourcePathOf("registry-regulation/correct/email")),
        argOf(CommandLineArg.INBOX_NOTIFICATION_TEMPLATE,
            testResourcePathOf("registry-regulation/correct/inbox")),
        argOf(CommandLineArg.DIIA_NOTIFICATION_TEMPLATE,
            testResourcePathOf("registry-regulation/correct/diia")),
        argOf(CommandLineArg.EXCERPTS,
            testResourcePathOf("registry-regulation/correct/excerpts-docx")),
        argOf(CommandLineArg.MOCK_INTEGRATIONS,
            testResourcePathOf("registry-regulation/correct/mock-integrations.json")),
        argOf(CommandLineArg.REPORTS,
            testResourcePathOf("registry-regulation/correct/reports/citizen/laboratory.json"),
            testResourcePathOf("registry-regulation/correct/reports/citizen/queries/queries.json"),
            testResourcePathOf("registry-regulation/correct/reports/citizen/registration.json"),
            testResourcePathOf("registry-regulation/correct/reports/officer/laboratory.json"),
            testResourcePathOf("registry-regulation/correct/reports/officer/queries/queries.json"),
            testResourcePathOf("registry-regulation/correct/reports/officer/registration.json"))
    );
  }