public void WhenBedLayoutIsRequestedFromWrongDbReturnError() { var dbObj = new BedLayoutDbOps(@"C://"); var response = dbObj.GetAllLayouts(); Assert.Null(response); }
//private readonly RemovedBedThenUpdateIcu _updateIcu = new RemovedBedThenUpdateIcu(); public List <string> GetAllBedLayouts(string dbPath) { var bedLayoutDbObj = new BedLayoutDbOps(dbPath); return(bedLayoutDbObj.GetAllLayouts()); }