You are here

protected function CheckoutIntegrationTest::setUp in Commerce Core 8.2

Overrides OrderKernelTestBase::setUp

File

modules/log/tests/src/Kernel/CheckoutIntegrationTest.php, line 44

Class

CheckoutIntegrationTest
Tests integration with checkout events.

Namespace

Drupal\Tests\commerce_log\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('commerce_log');
  $this->logStorage = $this->container
    ->get('entity_type.manager')
    ->getStorage('commerce_log');
  $this->logViewBuilder = $this->container
    ->get('entity_type.manager')
    ->getViewBuilder('commerce_log');
}