You are here

class UnitTestDummyHandler1 in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 tests/UnitTestDummyHandler1.php \UnitTestDummyHandler1

UnitTestDummyHandler1.

Hierarchy

Expanded class hierarchy of UnitTestDummyHandler1

3 string references to 'UnitTestDummyHandler1'
acsf_get_registry in tests/AcsfEventsTest.php
Mocks acsf_get_registry for testing.
UnitTest::testAcsfEventHandlerIncompatibleType in tests/AcsfEventsTest.php
Tests that incompatible handler types may not be used.
UnitTest::testAcsfEventPushPop in tests/AcsfEventsTest.php
Tests that the push and pop methods work as expected.

File

tests/UnitTestDummyHandler1.php, line 8

View source
class UnitTestDummyHandler1 extends AcsfEventHandler {

  /**
   * Dummy handler.
   */
  public function handle() {
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AcsfEventHandler::$completed public property The time that the handler was completed.
AcsfEventHandler::$message public property Any messages triggered by the handler.
AcsfEventHandler::$started public property The time that the handler was started.
AcsfEventHandler::__construct public function Constructor. 1
UnitTestDummyHandler1::handle public function Dummy handler. Overrides AcsfEventHandler::handle