You are here

function ClientsTestCase::setUp in Web Service Clients 7.3

Implements setUp().

Overrides DrupalWebTestCase::setUp

File

tests/clients.test, line 27
Contains tests for the Clients module.

Class

ClientsTestCase
Test case.

Code

function setUp() {

  // Call the parent with an array of modules to enable for the test.
  // The clients_test module provides us with a dummy connection type and a
  // default connection of this type.
  parent::setUp(array(
    'clients',
    'clients_test',
  ));
}