Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:scripting_comb_data_model [2020/07/18 02:25] – admin | tutorial:scripting_comb_data_model [2024/01/03 19:54] (current) – removed admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Tutorial: Automation Scripting - Combinatorial Model ====== | ||
- | |||
- | Learning Objectives: | ||
- | * Model scripting | ||
- | * Activating plugins | ||
- | * Looping through DataTable | ||
- | * Persisting and exporting results | ||
- | |||
- | ===== Model scripting ===== | ||
- | [[https:// | ||
- | |||
- | //Groovy// script is syntactically very similar to most of programming language that allows you to create classes, functions and basic logic and arithmetic operations. | ||
- | |||
- | Unlike [[tutorial_state_modeling | scripting for State Model]], you just write your script right in [[../ | ||
- | |||
- | for (Map< | ||
- | // run testing on row | ||
- | | ||
- | // return result to client | ||
- | $DATASET.notifyClient(row); | ||
- | } | ||
- | |||
- | |||