diff options
author | Valentin Popov <info@valentineus.link> | 2020-07-17 14:32:14 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-07-17 14:32:14 +0300 |
commit | 6d354e6a7791026b4a45e5e20963b10ed1a8bfbe (patch) | |
tree | b3267506993d7b5c21334cba5595fa6e41799536 /tests/Entities/Program/CreditEntityTest.php | |
parent | d54c1d65403c7694eea5c7c84b5ea0e3541d410d (diff) | |
download | php-epg-service-6d354e6a7791026b4a45e5e20963b10ed1a8bfbe.tar.xz php-epg-service-6d354e6a7791026b4a45e5e20963b10ed1a8bfbe.zip |
Added credit entity
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/Entities/Program/CreditEntityTest.php')
-rw-r--r-- | tests/Entities/Program/CreditEntityTest.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/Entities/Program/CreditEntityTest.php b/tests/Entities/Program/CreditEntityTest.php new file mode 100644 index 0000000..3c80300 --- /dev/null +++ b/tests/Entities/Program/CreditEntityTest.php @@ -0,0 +1,43 @@ +<?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\Program; + +use EPGService\Entities\Program\CreditEntity; +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\Program + */ +final class CreditEntityTest extends TestCase { + public function testCreateEntity(): void { + $faker = Faker::create(); + + $name = $faker->unique()->sha256; + $type = $faker->unique()->sha256; + + $entity = CreditEntity::create(compact('name', 'type')); + + self::assertEquals($name, $entity->name); + self::assertEquals($type, $entity->type); + } +} |