LaunchCodeEducation / csharp-web-dev-curriculum

Hugo version of C# Unit 2
http://education.launchcode.org/csharp-web-dev-curriculum/
1 stars 5 forks source link

GA2 Task 4 Uses different property name for location than name set in Task 3 #80

Open matthewcreek opened 3 months ago

matthewcreek commented 3 months ago

Relevant link

Text states: Task 3:

  1. Code a second constructor that takes 5 parameters and assigns values to name, employerName, employerLocation, jobType, and jobCoreCompetency. Also, this constructor should call the first in order to initialize the id field.

Task 4:

  1. In JobTest, define a test called TestJobConstructorSetsAllFields.
  2. Select one of the Job objects with the full constructor to test that the object is assigned the correct properties.
  3. Use Assert statements to test that the constructor correctly assigns the value of each field as follows:
    1. "Product tester" for Name
    2. "ACME" for EmployerName
    3. "Desert" for JobLocation
    4. "Quality control" for JobType
    5. "Persistence" for JobCoreCompetency

Suggested change: Task 4 text 3.3. Reads "Desert" for EmployerLocation