You are here

public function PatternsImportTestCase::setUp in Patterns 7

Same name and namespace in other branches
  1. 7.2 tests/importing/importing.test \PatternsImportTestCase::setUp()

Setups the testing environment.

Loads the patterns and libraries modules plus all those that are passed as parameters; skips the Patterns splash screen.

Parameters

array $user_modules The array of modules to enable:

bool $first (optional) If TRUE, the Patterns splash: screen is not skipped.

Overrides PatternsTestCase::setUp

File

tests/importing/importing.test, line 21
Tests importing files.

Class

PatternsImportTestCase
@file Tests importing files.

Code

public function setUp($modules = array(), $first = FALSE) {
  $this->importing_tests_dir = $this
    ->getPatternsTestDir() . 'importing/';

  // Enable any modules required for the tests.
  $modules = array(
    'patterns_components',
    'patterns_yamlparser',
  );
  parent::setUp($modules);
}