You are here

class AuthcacheP13nTestObjectFactoryDummyClass in Authenticated User Page Caching (Authcache) 7.2

Stub object factory class.

Hierarchy

Expanded class hierarchy of AuthcacheP13nTestObjectFactoryDummyClass

5 string references to 'AuthcacheP13nTestObjectFactoryDummyClass'
AuthcacheP13nTestObjectFactoryCase::testFactoryCollectionGet in modules/authcache_p13n/tests/authcache_p13n.object-factory.test
Covers $factory->get().
AuthcacheP13nTestObjectFactoryCase::testFactoryResolve in modules/authcache_p13n/tests/authcache_p13n.object-factory.test
Covers AuthcacheP13nObjectFactory::resolveReferences().
AuthcacheP13nTestObjectFactoryCase::testFactorySimpleGet in modules/authcache_p13n/tests/authcache_p13n.object-factory.test
Covers $factory->get().
AuthcacheP13nTestObjectFactoryCase::testRequireAcceptClassProcessors in modules/authcache_p13n/tests/authcache_p13n.object-factory.test
Cover AuthcacheP13nObjectFactory::defaultProcessors().
AuthcacheP13nTestObjectFactoryCase::testRequireRequireClassProcessors in modules/authcache_p13n/tests/authcache_p13n.object-factory.test
Cover AuthcacheP13nObjectFactory::defaultProcessors().

File

modules/authcache_p13n/tests/authcache_p13n.object-factory.test, line 17
Define test cases for object factory.

View source
class AuthcacheP13nTestObjectFactoryDummyClass {
  protected $args;

  /**
   * Construct new instance.
   */
  public function __construct($arg1 = NULL, $arg2 = NULL) {
    $this->args = array(
      'arg1' => $arg1,
      'arg2' => $arg2,
    );
  }

}

Members