iteo/tests/Behat/CrmContext.php
2024-04-14 20:17:21 +02:00

21 lines
492 B
PHP

<?php
namespace Behat;
use App\Entity\Client;
use App\Repository\ClientRepository;
use Behat\Behat\Context\Context;
use Behat\Behat\Tester\Exception\PendingException;
use Behat\Gherkin\Node\TableNode;
use Doctrine\ORM\EntityManagerInterface;
use PHPUnit\Framework\Assert;
use Symfony\Component\HttpClient\MockHttpClient;
use Symfony\Component\Uid\Uuid;
class CrmContext implements Context
{
public function __construct(
protected readonly MockHttpClient $crmClient,
) {}
}