InstallerProfileRequirementsTest.php

Same filename in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/InstallerProfileRequirementsTest.php
  2. 8.9.x core/tests/Drupal/FunctionalTests/Installer/InstallerProfileRequirementsTest.php
  3. 11.x core/tests/Drupal/FunctionalTests/Installer/InstallerProfileRequirementsTest.php

Namespace

Drupal\FunctionalTests\Installer

File

core/tests/Drupal/FunctionalTests/Installer/InstallerProfileRequirementsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\FunctionalTests\Installer;


/**
 * Tests that an install profile can implement hook_requirements().
 *
 * @group Installer
 */
class InstallerProfileRequirementsTest extends InstallerTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected $profile = 'testing_requirements';
    
    /**
     * {@inheritdoc}
     */
    protected function setUpSettings() {
        // This form will never be reached.
    }
    
    /**
     * {@inheritdoc}
     */
    protected function setUpRequirementsProblem() {
        // The parent method asserts that there are no requirements errors, but
        // this test expects a requirements error in the test method below.
        // Therefore, we override this method to suppress the parent's assertions.
    }
    
    /**
     * {@inheritdoc}
     */
    protected function setUpSite() {
        // This form will never be reached.
    }
    
    /**
     * Assert that the profile failed hook_requirements().
     */
    public function testHookRequirementsFailure() : void {
        $this->assertSession()
            ->pageTextContains('Testing requirements failed requirements.');
    }

}

Classes

Title Deprecated Summary
InstallerProfileRequirementsTest Tests that an install profile can implement hook_requirements().

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