Hello code.org community, I know we are all busy this time of year but I would sincerely appreciate anyone who has the time to help. The problem:
Student attempting to complete U2L3 - Parameterized Constructors - Level7C. His program compiles successfully after completing all the tasks, but when the student tries to use the “test” function, the first task is reported as failed. Relevant code/console log:
public Planet (String aName, int whatNumMoons, boolean doesHasRingSystem) {
name = aName;
numMoons = whatNumMoons;
hasRingSystem = doesHasRingSystem;
}
[JAVALAB] Running level tests…
Planet.java Test > Write a parameterized constructor to assign values for name, numMoons, and hasRingSystem => FAILED
The constructor should specify a boolean parameter to assign a value to hasRingSystem.
==> expected: but was: (PlanetTest.java:45)
Planet.java Test > Write a parameterized constructor to assign values to name and numMoons => SUCCEEDED
Planet.java Test > Assign specific values to the name, numMoons, and hasRingSystem instance variables => SUCCEEDED
Planet.java Test > Assigns specific values to name and numMoons and a default value to hasRingSystem => SUCCEEDED