public void test_getall_serach()
 {
     SearchDoctorController sdoc = new SearchDoctorController();
     param_getall           par  = new param_getall {
         doctor_name = "AAKALU"
     };
     dynamic res = sdoc.get_allsearch(par);
 }
Ejemplo n.º 2
0
        public void test_specialty()
        {
            SearchDoctorController sd = new SearchDoctorController();

            param_getall all = new param_getall();
            //all.city = "Alexandria, VA";

            dynamic res = sd.get_allsearch(all);

            Assert.AreEqual(res.Content.success, true);
        }