diff options
author | Valentin Popov <info@valentineus.link> | 2020-07-22 11:36:00 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-07-22 11:36:00 +0300 |
commit | a93c94f338a9e3188639015346ac01f08a36b44e (patch) | |
tree | 2fec41df0e34a3c55a57a43fb2e40358ade30dad /tests/Repositories/ChannelRepositoryTest.php | |
parent | 506e16bdfcae6996adacdcb5ba23fdf45c98bafe (diff) | |
download | php-epg-service-a93c94f338a9e3188639015346ac01f08a36b44e.tar.xz php-epg-service-a93c94f338a9e3188639015346ac01f08a36b44e.zip |
Fixed bugs and updated tests
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/Repositories/ChannelRepositoryTest.php')
-rw-r--r-- | tests/Repositories/ChannelRepositoryTest.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Repositories/ChannelRepositoryTest.php b/tests/Repositories/ChannelRepositoryTest.php index b9d9116..ac599a4 100644 --- a/tests/Repositories/ChannelRepositoryTest.php +++ b/tests/Repositories/ChannelRepositoryTest.php @@ -30,6 +30,7 @@ use Tests\Utilities\GetServiceEnvironment; * @package Tests\Repositories */ final class ChannelRepositoryTest extends TestCase { + /** * @throws \GuzzleHttp\Exception\GuzzleException * @throws \RuntimeException @@ -41,13 +42,15 @@ final class ChannelRepositoryTest extends TestCase { foreach (ChannelRepository::create($env)->get() as $channel) { /** @var \EPGService\Entities\ChannelEntity $channel */ + self::assertIsString($channel->id); + self::assertNotEmpty($channel->id); + self::assertIsString($channel->base_id); self::assertIsString($channel->base_name); self::assertIsString($channel->epg_id); self::assertIsString($channel->geo_data); self::assertIsString($channel->href); self::assertIsString($channel->icon); - self::assertIsString($channel->id); self::assertIsString($channel->lang); self::assertIsString($channel->name); self::assertIsString($channel->week); |