aboutsummaryrefslogtreecommitdiff
path: root/tests/Entities
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-15 12:54:01 +0300
committerValentin Popov <info@valentineus.link>2020-07-15 12:54:01 +0300
commit76e8ed954e2a1c70437fb34a927d1bb1d921d3ce (patch)
treecc6e261bea50a2e6643633197d013187e53ff574 /tests/Entities
parent2c59b907b8f4617afcf0c78e4069aedbbbd33939 (diff)
downloadphp-epg-service-76e8ed954e2a1c70437fb34a927d1bb1d921d3ce.tar.xz
php-epg-service-76e8ed954e2a1c70437fb34a927d1bb1d921d3ce.zip
Added category entity
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/Entities')
-rw-r--r--tests/Entities/CategoryEntityTest.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/Entities/CategoryEntityTest.php b/tests/Entities/CategoryEntityTest.php
new file mode 100644
index 0000000..6ad7bd3
--- /dev/null
+++ b/tests/Entities/CategoryEntityTest.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Copyright 2020 “EPGService”
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an “AS IS” BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+declare(strict_types = 1);
+
+namespace Tests\Entities;
+
+use EPGService\Entities\CategoryEntity;
+use Faker\Factory as Faker;
+use PHPUnit\Framework\TestCase;
+
+/**
+ * @copyright Copyright © 2020 “Valentin Popov” <info@valentineus.link>
+ * @license http://www.apache.org/licenses/LICENSE-2.0
+ * @package Tests\Entities
+ */
+final class CategoryEntityTest extends TestCase {
+ public function testCreateEntity(): void {
+ $faker = Faker::create();
+
+ $id = $faker->numberBetween(1, 999);
+ $lang = $faker->languageCode;
+ $name = $faker->word;
+ $version = $faker->sha256;
+
+ $entity = CategoryEntity::create(compact('id', 'lang', 'name', 'version'));
+
+ self::assertEquals($id, $entity->id);
+ self::assertEquals($lang, $entity->lang);
+ self::assertEquals($name, $entity->name);
+ self::assertEquals($version, $entity->version);
+ }
+}