У меня есть класс WebTestCase:
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Bundle\FrameworkBundle\Client;
class ApiAdminInvoiceControllerTest extends WebTestCase
{
public function test()
{
...
$this->assertArrayHasKey('id', $array);
...
}
}
У меня есть эта ошибка во всех утверждениях:Method 'assertArrayHasKey' not found
,
Попробуйте использовать PHPUnit \ Framework \ TestCase; как базовый класс
Других решений пока нет …