From 1c78c62b24277f4b0152fed870b1e144be256ac1 Mon Sep 17 00:00:00 2001 From: nab <nabila-aazibou-el-gerrab@kereval.com> Date: Wed, 13 Apr 2022 14:47:39 +0200 Subject: [PATCH] Update doc --- docs/installation-guide.md | 14 +++++++++++++- .../peripherals/GOCExecutor.java | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/installation-guide.md b/docs/installation-guide.md index 8a1b085..cf8e8bd 100644 --- a/docs/installation-guide.md +++ b/docs/installation-guide.md @@ -41,6 +41,7 @@ If you worked already with the previous versions of GOC, the following structure - Archetypes - generated-validator - Hl7templates + - goc-tests - gocmodel-jar - hl7templates-model-jar - hl7templates-api-jar @@ -266,6 +267,13 @@ we will need the following parameters to run GOC and generate the validator: <td>VOID, parameter present ==> it's true, not present ==> it's false</td> <td>not Required (default=false [Not present])</td> </tr> + <tr> + <td>-ignoreChoicesPredicates</td> + <td>Ignore Choices Predicates in generation constraints name (useful to ignore processing Choices for predicates name) </td> + <td>Boolean</td> + <td>VOID, Parameter present ==> It’s True, Not Present (Default) ==> it's False</td> + <td>not Required (default=false [Not present])</td> + </tr> <tr> <td>-versionLabel</td> <td>VersionLabel that will be used during the generation</td> @@ -569,12 +577,16 @@ Available options for `SPECIFICATION` are: <div id='extras'></div> +####10.3 GOC System Testing guide for developers +You can find more details about System Testing: +- [GOC System Testing guide for developers](https://saskereval-my.sharepoint.com/:w:/g/personal/nabila_aazibou-el-gerrab_kereval_com/EfRES8rEmoVEt0Ty2NPnljMBPfmnWWdJ02YjJw_x-xTPWA?e=wk0EJM) + ## 11. Extras You can find some previous made documentation here _(belong the old GOC, and could probably not represent the actual version)_: -- [GOC Installation guide for developers](https://docs.google.com/document/d/1G5bmLhFKNjOvg_rxEllidTofYrwxBeZG_kigTM0pqXM/edit?usp=sharing) - [Gazelle Object Checker General Public info - GOC](https://docs.google.com/document/d/1265YcvKk983Fna2Y8TI6V9O1wnKqERFAibIlVGYgW20/edit?usp=sharing) +- [GOC Installation guide for developers](https://docs.google.com/document/d/1G5bmLhFKNjOvg_rxEllidTofYrwxBeZG_kigTM0pqXM/edit?usp=sharing) #### Next released documentation diff --git a/hl7templates/hl7templates-packager-jar/src/main/java/net/ihe/gazelle/lib/hl7templatespackager/peripherals/GOCExecutor.java b/hl7templates/hl7templates-packager-jar/src/main/java/net/ihe/gazelle/lib/hl7templatespackager/peripherals/GOCExecutor.java index 53dd82d..a8b89d2 100644 --- a/hl7templates/hl7templates-packager-jar/src/main/java/net/ihe/gazelle/lib/hl7templatespackager/peripherals/GOCExecutor.java +++ b/hl7templates/hl7templates-packager-jar/src/main/java/net/ihe/gazelle/lib/hl7templatespackager/peripherals/GOCExecutor.java @@ -36,7 +36,7 @@ public class GOCExecutor { } public ValidatorConfiguration execute(BBRResource bbrResource, String mvnExecPath){ - return execute(bbrResource,mvnExecPath,null,true,true,null,true); + return execute(bbrResource,mvnExecPath,null,true,false,null,false); } public ValidatorConfiguration execute(BBRResource bbrResource,String mvnExecPath, -- GitLab