Server IP : 173.249.157.85 / Your IP : 18.224.18.7 Web Server : Apache System : Linux server.frogzhost.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : econtech ( 1005) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/econtech/www/vendor/phar-io/manifest/tests/values/ |
Upload File : |
<?php /* * This file is part of PharIo\Manifest. * * (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Manifest; use PHPUnit\Framework\TestCase; /** * @covers \PharIo\Manifest\AuthorCollection * @covers \PharIo\Manifest\AuthorCollectionIterator * * @uses \PharIo\Manifest\Author * @uses \PharIo\Manifest\Email */ class AuthorCollectionTest extends TestCase { /** * @var AuthorCollection */ private $collection; /** * @var Author */ private $item; protected function setUp() { $this->collection = new AuthorCollection; $this->item = new Author('Joe Developer', new Email('user@example.com')); } public function testCanBeCreated() { $this->assertInstanceOf(AuthorCollection::class, $this->collection); } public function testCanBeCounted() { $this->collection->add($this->item); $this->assertCount(1, $this->collection); } public function testCanBeIterated() { $this->collection->add( new Author('Dummy First', new Email('dummy@example.com')) ); $this->collection->add($this->item); $this->assertContains($this->item, $this->collection); } public function testKeyPositionCanBeRetreived() { $this->collection->add($this->item); foreach($this->collection as $key => $item) { $this->assertEquals(0, $key); } } }