Question: Java Language How can I make a test in JUnit for this setter and getter? private String customerId; public String getCustomerId(){ return customerId; } public

Java Language

How can I make a test in JUnit for this setter and getter?

private String customerId;

public String getCustomerId(){

return customerId;

}

public void setCustomerId(String customerId){

if (customerId.length()<= 4){

this.customerId = customerId;

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!