Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 doctors; DoctorService(){ doctors = new ArrayList(); } public static DoctorService getReference(){ return reference; } public List getAllDoctors(){ return doctors; } public boolean addDoctor(String name, String id){ String tempId = new String(id); boolean createDoctor = !doctors.stream().anyMatch(doctor -> doctor.getId() == tempId); if (createDoctor) { doctors.add(new Doctor(name, id)); } return createDoctor; }

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing Fundamentals Design And Implementation

Authors: KROENKE DAVID M.

1st Edition

8120322258, 978-8120322257

More Books

Students also viewed these Databases questions