Ejemplo n.º 1
0
        public void GivePatientMedicine()
        {
            PatientTests patient = new PatientTests();

            patient.GivePatientMedicine();

            Assert.Equal(11, 11);
        }
Ejemplo n.º 2
0
        public void DoctorDrawsBlood()
        {
            PatientTests patient = new PatientTests();

            patient.DoctorDrawsBlood();

            Assert.Equal(15, 15);
        }
Ejemplo n.º 3
0
        public void NurseDrawsBlood()
        {
            PatientTests patient = new PatientTests();

            patient.NurseDrawsBlood();

            Assert.Equal(17, 17);
        }