You are here

PhpUnitAutoloaderTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/simpletest/tests/src/Unit/PhpUnitAutoloaderTest.php

File

core/modules/simpletest/tests/src/Unit/PhpUnitAutoloaderTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\simpletest\Unit\PhpUnitAutoloaderTest.
 */
namespace Drupal\Tests\simpletest\Unit;

use Drupal\Tests\UnitTestCase;

/**
 * Tests that classes are correctly loaded during PHPUnit initialization.
 *
 * @group simpletest
 */
class PhpUnitAutoloaderTest extends UnitTestCase {

  /**
   * Test loading of classes provided by test sub modules.
   */
  public function testPhpUnitTestClassesLoading() {
    $this
      ->assertTrue(class_exists('\\Drupal\\phpunit_test\\PhpUnitTestDummyClass'), 'Class provided by test module was not autoloaded.');
  }

}

Classes

Namesort descending Description
PhpUnitAutoloaderTest Tests that classes are correctly loaded during PHPUnit initialization.