/
uchi-pro
/
api-client-php
Обзор
Документация
Войти
/
uchi-pro
/
api-client-php
Код
Запросы
0
Пакеты
0
Релизы
3
Аналитика
4.0.0
tests/FilesTest.php
16 строк
388 B
Andrey Gladyshev
feat: перевести проект на php 8.2. убрать устаревшие методы
31 май 2024, 13:00
31 май 2024, 13:00
5826891
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace UchiPro\Tests; class FilesTest extends TestCase { public function testGetProtocolFIle() { $protocolHtmlContent = $this->getApiClient()->getFile('/protocols/250/content?_fmt=html'); $this->assertNotEmpty($protocolHtmlContent); $this->assertStringContainsString('Протокол', $protocolHtmlContent); } }