Unit Testing II Lab

Lab Objectives

  • Practice writing tests for existing classes
  • Reinforce the importance of the Arrange testing step

Practice

In small groups you are going to be writing tests and adding some functionality for a Record Label Inventory System. In groups, complete the following:

  1. Fork and Clone this starter repo. Each person should fork and clone - while you are working collaboratively, we want everyone to stretch those coding muscles!
  2. Spend 10-15 minutes reviewing the existing code to become familiar with the existing functionality - don’t hesitate to reach out to your instructors with questions.
  3. Identify what methods need tests, and determine if each method is a command or query method.
  4. Write tests for the method you identified in the previous step.

Be ready to share out the tests that you have written!

  1. After you have written tests fo all of the existing methods, take another look at the program and identify one additional class that could improve the re-usability and extendability (the ease or difficulty of adding features) of the code. To help you think through this, you can start by answering the following questions:
    • Is there any code that is repeated often?
    • What if we want to track more information about songs, like length or genre?
    • Is there additional information that would be useful about an album? There is no “right” class to build - there are a lot of ways we could improve this code. The important thing to focus on is the idea generation!
  2. Implement the class that you decided on, and make sure that all of its methods are tested! This will require you to change the code in Program.cs to maintain the functionality of the application; that’s ok! Refactoring often requires small tweaks to how the classes and methods are used in the application.

Lesson Search Results

Showing top 10 results