/**
  * Test exception thrown by getNotifier.
  *
  * @expectedException CvoTechnologies\Notifier\Exception\MissingNotifierException
  * @expectedExceptionMessage Notifier class "Test" could not be found.
  */
 public function testGetNotifierThrowsException()
 {
     $stub = new Stub();
     $stub->getNotifier('Test');
 }