You are here

RegistryAutoloadTestTest.class.php in Registry Autoload 7

Tests that non namespaced classes get registered correctly.

File

tests/modules/registry_autoload_test/includes/RegistryAutoloadTestTest.class.php
View source
<?php

/**
 * @file
 * Tests that non namespaced classes get registered correctly.
 */
class RegistryAutoloadTestTest {

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

}

Classes

Namesort descending Description
RegistryAutoloadTestTest @file Tests that non namespaced classes get registered correctly.