Question: Hi I need help to test this program using junit 4 please test all methods and do not leave anything out show me the output
Hi I need help to test this program using junit 4 please test all methods and do not leave anything out show me the output once you have tested thank you.
package medical.com.medicalApplication.services;
import java.util.ArrayList; import java.util.List;
import medical.com.medicalApplication.model.Doctor; /** * * This class uses a singleton pattern to mock a service instead of using dependency injection * * In addition, it stores data in memory only using Lists * */ public class DoctorService { private static DoctorService reference = new DoctorService(); private static List
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
