Tests that module-provided classes can be loaded when a module is enabled.
\Drupal\module_autoload_test\SomeClass
function testClassLoading() {
// Enable the module_test and module_autoload_test modules.
module_enable(array(
'module_test',
'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
->assertText($this->expected, 'Autoloader loads classes from an enabled module.');
}
}