Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:comb_data_modeling [2020/06/12 01:59] – [Generate Test Cases] admin | tutorial:comb_data_modeling [2024/01/03 19:53] (current) – removed admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Tutorial: Combinatorial Modeling and Test Generation ====== | ||
- | |||
- | Learning Objectives: | ||
- | * [[#What is Combinatorial Model?]] | ||
- | * [[#Create Model]] | ||
- | * [[#Generate Test Cases]] | ||
- | * [[#Make Changes]] | ||
- | |||
- | ===== What is Combinatorial Model? ===== | ||
- | Combinatorial Model is an abstraction and representation of a combinatorial problem. | ||
- | |||
- | Combinatorial Model consists of a list of variables with each variable having a set of domain values to be tested. The objective is to produce the least number of permutations of variable values to achieve the desired degree of interactions among variables. | ||
- | |||
- | Consider three variables with each variable has a domain of 10 possible values. | ||
- | |||
- | So if we were to reduce the test cases to test, which of the 1000 test cases can we cut? | ||
- | |||
- | According to {{https:// | ||
- | |||
- | // | ||
- | |||
- | In the example above, suppose we want to ensure every pair of variables are tested, we could use Pairwise algorithm to generate the test cases and the result is 99 test cases, which is 10% of 1000 test cases. | ||
- | |||
- | |||
- | |||
- | ===== Create Model ===== | ||
- | To create a combinatorial model, clicki on {{wiki: | ||
- | |||
- | {{wiki: | ||
- | |||
- | The //Menu File List// opens: | ||
- | |||
- | {{wiki: | ||
- | |||
- | By default it opens at the root folder // | ||
- | |||
- | Enter the model name at the New Model prompt: | ||
- | |||
- | {{wiki: | ||
- | |||
- | The new model is open in //DEFINE// tab like this: | ||
- | |||
- | {{wiki: | ||
- | |||
- | |||
- | The first step is to define all of the variables and set the domain values for each variable. This is done in //DEFINE// tab: | ||
- | - click on {{wiki: | ||
- | - select the appropriate data type: int, float, txt or bool | ||
- | - enter domain values one value on each line | ||
- | |||
- | You should have something like this: | ||
- | |||
- | {{wiki: | ||
- | |||
- | Go ahead and create two more variables and we have the model built: | ||
- | |||
- | {{wiki: | ||
- | |||
- | You can also add constraints to remove certain permutations that are illegal, invalid or unwanted for any reason. | ||
- | |||
- | Save the changes and we are ready to generates the test cases from this model. | ||
- | |||
- | |||
- | |||
- | |||
- | ===== Generate Test Cases ===== | ||
- | Test generation from combinatorial model is done in [[../ | ||
- | |||
- | {{wiki: | ||
- | |||
- | To generate the test cases, | ||
- | * select an algorithm {{wiki: | ||
- | |||
- | * click on ▶ next to the algorithm dropdown | ||
- | |||
- | Generated test cases are listed in // | ||
- | |||
- | {{wiki: | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | ===== Make Changes ===== | ||
- | |||
- | |||
- | |||
- | ===== ===== | ||