/**
  * Test Boundary Throw a null event
  *
  * @throws NotificationServiceException
  */
 @Test(expected = NotificationServiceException.class)
 public void testNotificationThrowNull() throws NotificationServiceException {
   logger.info("testNotificationThrowNull() called");
   greeting.throwNullEvent();
 }