public function testDetach()
 {
     $this->processor->detach('unexists_type', $this->observer);
     $this->processor->attach('some_type', $this->observer);
     $this->processor->notify('unexists_type');
     $this->processor->detach('some_type', $this->observer);
 }