Exemple #1
0
        public void T5_Find_FindsSymptomInDB()
        {
            Symptom testSymptom = new Symptom("Anderson", "1234 Main Street");

            testSymptom.Save();

            Symptom foundSymptom = Symptom.Find(testSymptom.GetId());

            Assert.Equal(testSymptom, foundSymptom);
        }
        public Symptom GetSymptom()
        {
            Symptom oneSymptom = Symptom.Find(_symptomId);

            return(oneSymptom);
        }