woocommerce-paypal-payments/tests/e2e/PHPUnit/TestCase.php

17 lines
304 B
PHP
Raw Normal View History

2022-06-15 21:37:10 +03:00
<?php
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Tests\E2e;
use PPCP_E2E;
use Psr\Container\ContainerInterface;
class TestCase extends \PHPUnit\Framework\TestCase
{
protected $container;
protected function getContainer(): ContainerInterface {
return PPCP_E2E::$container;
}
}