You are here

EntityTest.php in Autoload 7

Same filename and directory in other branches
  1. 7.2 src/Tests/Unit/EntityTest.php

File

src/Tests/Unit/EntityTest.php
View source
<?php

namespace Drupal\autoload\Tests\Unit;


/**
 * Class EntityTest.
 */
class EntityTest extends AuxiliaryTest {

  /**
   * {@inheritdoc}
   */
  protected static $modules = array(
    'autoload_test_entity_ui',
  );

  /**
   * {@inheritdoc}
   */
  public function test() {

    // The next error must not appear:
    // Error: Class 'Drupal\autoload_test_entity_ui\ViewsController' not found
    // in entity_views_data() (line 31 of sites/all/modules/entity/views/entity.
    // views.inc).
  }

}

Classes

Namesort descending Description
EntityTest Class EntityTest.