public function testGetAndSetSourceType()
 {
     $event = new Event('Text', 'Title');
     $this->assertNull($event->getSourceTypeName());
     $event->setSourceTypeName(Event::SOURCE_NAGIOS);
     $this->assertEquals(Event::SOURCE_NAGIOS, $event->getSourceTypeName());
 }