Question: How do i write the test cases for this class EnhancedUnit.java public class EnhancedUnit extends Unit { // Declare the fields private String specialRule; //
How do i write the test cases for this class
EnhancedUnit.java
public class EnhancedUnit extends Unit { // Declare the fields private String specialRule; // Define the constructor public EnhancedUnit(String name, int points) { super(name, points); this.specialRule = null; } // Define the getter methods public String getSpecialRule() { return this.specialRule; } // Define the setter methods public void setSpecialRule(String specialRule) { this.specialRule = specialRule; } } Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
