You are here

RegistryAutoloadTestTest.php in Registry Autoload 7

Tests that PSR-0 namespaced classes get registered correctly.

Namespace

Drupal\Core\Cache

File

tests/modules/registry_autoload_test/lib/Drupal/Core/Cache/RegistryAutoloadTestTest.php
View source
<?php

/**
 * @file
 * Tests that PSR-0 namespaced classes get registered correctly.
 */
namespace Drupal\Core\Cache;

class RegistryAutoloadTestTest {

  /**
   * Constructs a RegistryAutoloadTestTest object.
   */
  public function __construct() {
    print "Hello Core\n";
  }

}

Classes