Exemple #1
0
        public void GetPatient_CallToDB_DBGetPatientRecivesACall(string cpr)
        {
            uut.GetPatient(cpr);

            db.Received(1).GetPatient(cpr);
        }
Exemple #2
0
        public void UC3GetPatient(object sender, DoWorkEventArgs e)
        {
            string CPR = (string)e.Argument;

            e.Result = uc3_ShowHATech.GetPatient(CPR);
        }
        public void GetPatient_CallToDB_DBGetPatientReceivesACall(string cpr)
        {
            uut.GetPatient(cpr);

            db.Received(1).GetPatientWithGeneralSpecAndTechnicalSpec(cpr);
        }