You are here

protected function ViewsIntegrationTest::setUp in Commerce Core 8.2

Overrides OrderKernelTestBase::setUp

File

modules/payment/tests/src/Kernel/ViewsIntegrationTest.php, line 37

Class

ViewsIntegrationTest
Tests that a view can be made of payment methods.

Namespace

Drupal\Tests\commerce_payment\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('commerce_payment');
  $this
    ->installEntitySchema('commerce_payment_method');
  $this
    ->installConfig('commerce_payment');
  $this
    ->installConfig('commerce_payment_test');
}