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