You are here

function CommercePricelistTaxTest::setUp in Commerce Pricelist 7

Implementation of setUp().

Overrides CommercePricelistTestCase::setUp

File

tests/commerce_pricelist_tax.test, line 33
Functional tests for the commerce price list module.

Class

CommercePricelistTaxTest
Test price list features for a product display that only has one product attached.

Code

function setUp($other_modules = array()) {
  $modules = parent::setUpHelper('all');
  parent::setUp($modules);

  // Create a dummy tax type for testing.
  $this->tax_type = $this
    ->createDummyTaxType();
}