Question 20
Consider that concolic testing technique (DART) is used to test the following code segment.
Assume that , , and respresent the symbolic values for the variables , , and respectively, in the method . Answer the subsequent questions.
Which of the following sets of concrete test inputs execute all instances of symbolic execution for the method ?
{x = 5, y = 2, z = 3}, {x = 4, y = 8, z = 2}
{x = 5, y = 2, z = 3}, {x = 4, y = 8, z = 2}, {x = 5, y = 8, z = 10}
{x = 5, y = 3, z = 5}, {x = 4, y = 8, z = 2}, {x = 5, y = 8, z = 10}
{x = 5, y = 2, z = 3}, {x = 4, y = 8, z = 2}, {x = 5, y = 8, z = 4}