function ClassLoaderTest::testClassLoadingDisabledModules

Tests that module-provided classes can't be loaded from disabled modules.

See also

\Drupal\module_autoload_test\SomeClass

File

drupal/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php, line 51
Definition of Drupal\system\Tests\Module\ClassLoaderTest.

Class

ClassLoaderTest
Tests class loading.

Namespace

Drupal\system\Tests\Module

Code

function testClassLoadingDisabledModules() {

  // Ensure that module_autoload_test is disabled.
  module_disable(array(
    'module_autoload_test',
  ), FALSE);
  $this
    ->resetAll();

  // Check twice to test an unprimed and primed system_list() cache.
  for ($i = 0; $i < 2; $i++) {
    $this
      ->drupalGet('module-test/class-loading');
    $this
      ->assertNoText($this->expected, 'Autoloader does not load classes from a disabled module.');
  }
}