Add empty test class for CartRepository

This commit is contained in:
David Naber 2020-08-11 09:25:28 +02:00
parent ac8cb3bf40
commit 449d3440bd

View file

@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\ApiClient\Repository;
use Mockery\Adapter\Phpunit\MockeryTestCase;
class CartRepositoryTest extends MockeryTestCase
{
public function testAll()
{
self::markTestSkipped("Todo");
}
}