Worksheet: J1 | CS 2113 Software Engineering - Spring 2025

Worksheet: J1

Please submit your answers to the questions as comments in a J1.md markdown file you’ll be writing in this lab. To render your file, create a github repo and upload your file there – it can be viewed in your web browser.

Questions

  1. What is fault localization? Provide your answer using at least one bolded phrase using markdown.

    Reveal Solution

  2. What are three benefits of Test Driven Development (TDD)? Provide your answer using an unordered list in markdown.

    Reveal Solution

  3. Using input domain partitioning, write a test set that checks that a method that gives discounts to children and seniors of 50% and 25% respectively works as intended. The input to this method is a single variable, age, and the output is the discount.

    Reveal Solution

  4. Given the example of requirements for generating a password:

    • It must have at least one number.
    • It must have at least one uppercase letter.
    • It must have at least one lowercase letter.
    • It must not contain the website gmail anywhere. (For example if we were generating a password for gmail accounts)
    • It can only be made up of letters, numbers, and the underscore.

    What are the input domain paritions for this exercise? Provide your answer using an unordered nested lists in markdown.

    Reveal Solution

  5. Imagine you are writing test cases to find the minimum of a list.

    What are the input domain paritions for this exercise? Provide your answer using an unordered nested lists in markdown.

    Reveal Solution

  6. Complete the truth table below to show what inputs we need to achieve active clause coverage for the following conditional:

    if ( ( (a > b) or G ) and (x < y) )
    
    a > b G x < y predicate outcome clause responsible

    Google how to make a table in markdown, and use a table to represent your results, like we did in class.

    Reveal Solution

  7. Consider the control flow graph below. What are all the paths (using node numbers) that would achieve full path coverage as a test criteria? Is this a finite set?

    When listing all the paths, style your answer so that it appears like code (a code-like font with a gray background).

    flow

    Reveal Solution

  8. What benefit does mutation testing offer over other testing methods discussed in class? Use a link in markdown to link to the definition of mutation testing we have in our lecture notes from today.

    Reveal Solution