You are here

function i18n_Taxonomy_Test::setUp in Internationalization 6

Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.

Parameters

...: List of modules to enable for the duration of the test.

Overrides Drupali18nTestCase::setUp

File

tests/i18n_taxonomy.test, line 20

Class

i18n_Taxonomy_Test

Code

function setUp() {
  parent::setUp('i18nstrings', 'taxonomy', 'i18ntaxonomy');
  $this
    ->addLanguage('es');
  $this
    ->addLanguage('de');
}