Example #1
0
 public function testRegisterComponentType()
 {
     $components = $this->query->getComponentTypes();
     $components['mykey'] = 'mycomponent';
     $this->query->registerComponentType('mykey', 'mycomponent', 'mybuilder', 'myparser');
     $this->assertEquals($components, $this->query->getComponentTypes());
 }