Variable values are currently generated in an isolated exhaustive manner where each variable iterator is exhausted but not every combination is generated. For example, consider the following three variables:
The current generation procedure would only generate 12 trace contexts, which exhaustes the 12 month values and the 10 day values, where two day values will be repeated.
This is fine for some situations, but, in the example of the date binary, we need collective coverage where each unique combination is exercised, which is this case would be 120 contexts.
Create a new class for generating trace contexts in a collectively exhaustive manner, producing all unique combination of values.
Variable values are currently generated in an isolated exhaustive manner where each variable iterator is exhausted but not every combination is generated. For example, consider the following three variables:
The current generation procedure would only generate 12 trace contexts, which exhaustes the 12
month
values and the 10day
values, where two day values will be repeated.This is fine for some situations, but, in the example of the
date
binary, we need collective coverage where each unique combination is exercised, which is this case would be 120 contexts.Create a new class for generating trace contexts in a collectively exhaustive manner, producing all unique combination of values.