ClassyTest.php

Same filename in this branch
  1. 9 core/themes/classy/tests/src/Functional/ClassyTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/src/Kernel/Render/ClassyTest.php
  2. 8.9.x core/tests/Drupal/FunctionalTests/Theme/ClassyTest.php

Namespace

Drupal\Tests\classy\Kernel

File

core/themes/classy/tests/src/Kernel/ClassyTest.php

View source
<?php

namespace Drupal\Tests\classy\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Tests the Classy theme.
 *
 * @group classy
 * @group legacy
 */
class ClassyTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
    'twig_theme_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    parent::setUp();
    // Use the classy theme.
    $this->container
      ->get('theme_installer')
      ->install([
      'classy',
    ]);
    $this->container
      ->get('config.factory')
      ->getEditable('system.theme')
      ->set('default', 'classy')
      ->save();
    // Clear the theme registry.
    $this->container
      ->set('theme.registry', NULL);
  }
  
  /**
   * Tests the classy theme.
   */
  public function testClassyTheme() {
    \Drupal::messenger()->addError('An error occurred');
    \Drupal::messenger()->addStatus('But then something nice happened');
    $messages = [
      '#type' => 'status_messages',
    ];
    $this->render($messages);
    $this->assertNoText('custom-test-messages-class', 'The custom class attribute value added in the status messages preprocess function is not displayed as page content.');
  }

}

Classes

Title Deprecated Summary
ClassyTest Tests the Classy theme.

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