@Test
 public void testSetAndGetDifficultySwallowingShouldSetAndReturnProperValue() {
   Boolean testDifficultySwallowing = true;
   assertNull(annualReview.getDifficultySwallowing());
   annualReview.setDifficultySwallowing(testDifficultySwallowing);
   assertEquals(testDifficultySwallowing, annualReview.getDifficultySwallowing());
 }