You are here

function NodeConvertTestCase::setUp in Node Convert 7

Same name and namespace in other branches
  1. 6 node_convert.test \NodeConvertTestCase::setUp()

Implements setUp().

Overrides DrupalWebTestCase::setUp

File

./node_convert.test, line 28
Node convert Simpletest Unit

Class

NodeConvertTestCase
Class NodeConvertTestCase

Code

function setUp() {

  // The first thing a setUp() method should always do is call its parent setUp() method.
  // If you need to enable any modules (including the one being tested),
  // add them as function parameters.
  parent::setUp('content', 'node_convert');

  // Next, perform any required steps for the test methods within this test grouping.
}