mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
17 lines
304 B
PHP
17 lines
304 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|