TaxTypeTest.php in Commerce Migrate 3.0.x
Same filename in this branch
- 3.0.x modules/ubercart/tests/src/Kernel/Migrate/uc7/TaxTypeTest.php
- 3.0.x modules/ubercart/tests/src/Kernel/Migrate/uc6/TaxTypeTest.php
- 3.0.x modules/commerce/tests/src/Kernel/Migrate/commerce1/TaxTypeTest.php
- 3.0.x modules/ubercart/tests/src/Kernel/Plugin/migrate/source/uc7/TaxTypeTest.php
- 3.0.x modules/ubercart/tests/src/Kernel/Plugin/migrate/source/uc6/TaxTypeTest.php
- 3.0.x modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/TaxTypeTest.php
Same filename and directory in other branches
File
modules/ubercart/tests/src/Kernel/Migrate/uc6/TaxTypeTest.phpView source
<?php
namespace Drupal\Tests\commerce_migrate_ubercart\Kernel\Migrate\uc6;
use Drupal\Tests\commerce_migrate\Kernel\CommerceMigrateTestTrait;
/**
* Tests tax type migration.
*
* @group commerce_migrate
* @group commerce_migrate_uc6
*/
class TaxTypeTest extends Ubercart6TestBase {
use CommerceMigrateTestTrait;
/**
* {@inheritdoc}
*/
public static $modules = [
'commerce_price',
'commerce_tax',
];
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('commerce_tax_type');
$this
->executeMigration('uc6_tax_type');
}
/**
* Test tax migration.
*/
public function testTaxType() {
$this
->assertTaxType('handling', 'Handling', 'custom', '0.04', [
[
'country_code' => 'US',
],
]);
}
}
Classes
Name | Description |
---|---|
TaxTypeTest | Tests tax type migration. |