ProfileTypeCustomerTest.php in Commerce Migrate 3.0.x
File
modules/ubercart/tests/src/Kernel/Migrate/uc7/ProfileTypeCustomerTest.php
View source
<?php
namespace Drupal\Tests\commerce_migrate_ubercart\Kernel\Migrate\uc7;
use Drupal\Tests\commerce_migrate\Kernel\CommerceMigrateTestTrait;
class ProfileTypeCustomerTest extends Ubercart7TestBase {
use CommerceMigrateTestTrait;
public static $modules = [
'profile',
];
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('profile');
$this
->executeMigration('uc_profile_type');
}
public function testProfileType() {
$this
->assertProfileType('customer', 'Customer', FALSE, FALSE);
}
}