Example #1
0
 /**
  * Tests the JApplicationCli::triggerEvents method.
  *
  * @return  void
  *
  * @since   11.3
  */
 public function testTriggerEvents()
 {
     $this->inspector->setClassProperty('dispatcher', null);
     $this->assertThat($this->inspector->triggerEvent('onJCliTriggerEvent'), $this->isNull(), 'Checks that for a non-dispatcher object, null is returned.');
     $this->inspector->setClassProperty('dispatcher', $this->getMockDispatcher());
     $this->inspector->registerEvent('onJCliTriggerEvent', 'function');
     $this->assertThat($this->inspector->triggerEvent('onJCliTriggerEvent'), $this->equalTo(array('function' => null)), 'Checks the correct dispatcher method is called.');
 }