aboutsummaryrefslogtreecommitdiff
path: root/tests/Repositories/GenreRepositoryTest.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-22 11:36:00 +0300
committerValentin Popov <info@valentineus.link>2020-07-22 11:36:00 +0300
commita93c94f338a9e3188639015346ac01f08a36b44e (patch)
tree2fec41df0e34a3c55a57a43fb2e40358ade30dad /tests/Repositories/GenreRepositoryTest.php
parent506e16bdfcae6996adacdcb5ba23fdf45c98bafe (diff)
downloadphp-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/GenreRepositoryTest.php')
-rw-r--r--tests/Repositories/GenreRepositoryTest.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Repositories/GenreRepositoryTest.php b/tests/Repositories/GenreRepositoryTest.php
index 8afe351..2574059 100644
--- a/tests/Repositories/GenreRepositoryTest.php
+++ b/tests/Repositories/GenreRepositoryTest.php
@@ -29,6 +29,7 @@ use Tests\Utilities\GetServiceEnvironment;
* @package Tests\Repositories
*/
final class GenreRepositoryTest extends TestCase {
+
/**
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \RuntimeException
@@ -40,10 +41,10 @@ final class GenreRepositoryTest extends TestCase {
foreach (GenreRepository::create($env)->get() as $genre) {
/** @var \EPGService\Entities\GenreEntity $genre */
- self::assertIsInt($genre->id);
- self::assertIsString($genre->lang);
- self::assertIsString($genre->name);
- self::assertIsString($genre->version);
+ self::assertNotEmpty($genre->id);
+ self::assertNotEmpty($genre->lang);
+ self::assertNotEmpty($genre->name);
+ self::assertNotEmpty($genre->version);
}
}
}