public void UpdateMedicine() { var updatedNotes = "Updated Notes"; var response = _repository.UpdateMedicine(2, updatedNotes); response.ShouldNotBeNull(); Assert.AreEqual(response.Notes, updatedNotes); }