LocaleInstallTest.php

Definition of Drupal\locale\Tests\LocaleInstallTest.

Namespace

Drupal\locale\Tests

File

drupal/core/modules/locale/lib/Drupal/locale/Tests/LocaleInstallTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\locale\Tests\LocaleInstallTest.
 */
namespace Drupal\locale\Tests;

use Drupal\simpletest\WebTestBase;
use ReflectionFunction;

/**
 * Tests for the st() function.
 */
class LocaleInstallTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'locale',
  );
  public static function getInfo() {
    return array(
      'name' => 'String translation using st()',
      'description' => 'Tests that st() works like t().',
      'group' => 'Locale',
    );
  }
  function setUp() {
    parent::setUp();

    // st() lives in install.inc, so ensure that it is loaded for all tests.
    require_once DRUPAL_ROOT . '/core/includes/install.inc';
  }

  /**
   * Verify that function signatures of t() and st() are equal.
   */
  function testFunctionSignatures() {
    $reflector_t = new ReflectionFunction('t');
    $reflector_st = new ReflectionFunction('st');
    $this
      ->assertEqual($reflector_t
      ->getParameters(), $reflector_st
      ->getParameters(), t('Function signatures of t() and st() are equal.'));
  }

}

Classes

Namesort descending Description
LocaleInstallTest Tests for the st() function.