public function testRegisterGetComponents()
 {
     $this->assertCount(0, $this->processor->getComponents());
     $this->processor->register($this->component);
     $this->assertCount(1, $this->processor->getComponents());
 }