/**
  * Tests getting the name using Mediator class accessor method.
  */
 public function testNameAccessor()
 {
     // Create a new Mediator and use accessors to set the mediator name
     $mediator = new Mediator('');
     // test assertions
     $this->assertTrue($mediator->getMediatorName() == Mediator::NAME, "Expecting mediator->getMediatorName() == Mediator::NAME");
 }