Final answer:
A PongScore class in Java tracks scores for players in a Pong game with methods to update and retrieve the score. Testing is done via a PongScoreTest class with a main method.
Step-by-step explanation:
The PongScore class in Java is an essential component for keeping track of scores in a Pong game. To implement the PongScore class, you need to define two primary methods: scorePoints(...) and getScore(). The scorePoints method is responsible for updating the score whenever the ball hits the end wall behind a player. It takes an integer parameter representing the number of points to add. The getScore method, on the other hand, is used to retrieve the current score for display.
Example Implementation:
public class PongScore {
private int score;
public PongScore() {
this.score = 0;
}
public void scorePoints(int points) {
this.score += points;
}
public int getScore() {
return this.score;
}
}
To test the PongScore class, you will create a separate class named PongScoreTest that includes a main method. This class will instantiate several PongScore objects and call the scorePoints method with various arguments to ensure that it correctly updates the score.