You are here

RegistryAutoloadTestTest.php in Registry Autoload 7

Tests that custom namespace classes get registered correctly.

File

tests/modules/registry_autoload_test/custom/some/name/space/RegistryAutoloadTestTest.php
View source
<?php

/**
 * @file
 * Tests that custom namespace classes get registered correctly.
 */
namespace custom\some\name\space;

class RegistryAutoloadTestTest {

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

}

Classes