public void TestGetListOfMedicationAllergies02()
        {
            var allergyIntolerance = new AllergyIntolerance("http://fhirtest.uhn.ca/baseDstu2/");
            var patientID = 6116;
            var medications = new List<string>() { "tylenol" };
            var result = allergyIntolerance.GetListOfMedicationAllergies(patientID, medications).ToList();

            //The patient is not allergic to tylenol and we will be given an empty list.

            Assert.Equal(0,result.Count);
        }
        public void TestGetListOfMedicationAllergies01()
        {
            var allergyIntolerance = new AllergyIntolerance("http://fhirtest.uhn.ca/baseDstu2/");
            var patientID = 6116; //Patient ID for FHIR Server
            var medications = new List<string>() { "hydrocodone", "aspirin" }; //medications the patient is taking
            var result = allergyIntolerance.GetListOfMedicationAllergies(patientID, medications).ToList();
            
            //We know the medication we expect to see in this list should be hydrocodone
            //because patient is alergic

            Assert.Equal("hydrocodone", result[0]);
        }