public void TestTearDown()
 {
     _volunteerAccessor = null;
 }
 /// <summary>
 /// NAME: Josh Jackson
 /// DATE: 02/07/2020
 /// Checked By: Ethan H, Gabi L
 /// this contructor takes an IVolunteerObject object as an argument
 /// </summary>
 /// <remarks>
 /// UPDATED BY:
 /// UPDATE DATE:
 /// WHAT WAS CHANGED:
 /// <param name="volunteerAccessor"></param>
 /// </remarks>
 public VolunteerManager(IVolunteerAccessor volunteerAccessor)
 {
     _volunteerAccessor = volunteerAccessor;
 }
 public VolunteerManagerTests()
 {
     _volunteerAccessor = new FakeVolunteerAccessor();
 }
 /// <summary>
 /// NAME: Josh Jackson
 /// DATE: 02/07/2020
 /// Checked By: Ethan H, Gabi L
 /// this is the default constructor
 /// </summary>
 /// <remarks>
 /// UPDATED BY:
 /// UPDATE DATE:
 /// WHAT WAS CHANGED:
 /// </remarks>
 public VolunteerManager()
 {
     _volunteerAccessor = new VolunteerAccessor();
 }