SystemListingCrossProfileCompatibleTest.php

Same filename and directory in other branches
  1. 9 core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php
  2. 8.9.x core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php
  3. 10 core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php

Namespace

Drupal\Tests\drupal_system_listing_compatible_test\Kernel

File

core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\drupal_system_listing_compatible_test\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Verifies that tests in installation profile modules are found.
 *
 * @group drupal_system_listing_compatible_test
 */
class SystemListingCrossProfileCompatibleTest extends KernelTestBase {
    
    /**
     * Attempt to enable a module from the Testing profile.
     *
     * This test uses the Minimal profile, but enables a module from the Testing
     * profile to confirm that a different profile can be used for running tests.
     *
     * @var array
     */
    protected static $modules = [
        'drupal_system_cross_profile_test',
    ];
    
    /**
     * Use the Minimal profile.
     *
     * This test needs to use a different installation profile than the test which
     * asserts that this test is found.
     *
     * @var string
     */
    protected $profile = 'minimal';
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->setInstallProfile($this->profile);
    }
    
    /**
     * Non-empty test* method required to executed the test case class.
     */
    public function testSystemListing() {
        
        /** @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler */
        $module_handler = $this->container
            ->get('module_handler');
        $this->assertTrue($module_handler->moduleExists('drupal_system_cross_profile_test'), 'Module installed from different profile');
    }

}

Classes

Title Deprecated Summary
SystemListingCrossProfileCompatibleTest Verifies that tests in installation profile modules are found.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.