<?php declare(strict_types = 1); /* * 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\Application * @covers PharIo\Manifest\Type */ class ApplicationTest extends TestCase { /** @var Application */ private $type; protected function setUp(): void { $this->type = Type::application(); } public function testCanBeCreated(): void { $this->assertInstanceOf(Application::class, $this->type); } public function testIsApplication(): void { $this->assertTrue($this->type->isApplication()); } public function testIsNotLibrary(): void { $this->assertFalse($this->type->isLibrary()); } public function testIsNotExtension(): void { $this->assertFalse($this->type->isExtension()); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
ApplicationNameTest.php | File | 1.55 KB | 0644 |
|
ApplicationTest.php | File | 1.13 KB | 0644 |
|
AuthorCollectionTest.php | File | 1.7 KB | 0644 |
|
AuthorTest.php | File | 1.28 KB | 0644 |
|
BundledComponentCollectionTest.php | File | 1.79 KB | 0644 |
|
BundledComponentTest.php | File | 1.24 KB | 0644 |
|
CopyrightInformationTest.php | File | 1.79 KB | 0644 |
|
EmailTest.php | File | 1.03 KB | 0644 |
|
ExtensionTest.php | File | 3.37 KB | 0644 |
|
LibraryTest.php | File | 1.11 KB | 0644 |
|
LicenseTest.php | File | 1.23 KB | 0644 |
|
ManifestTest.php | File | 5.63 KB | 0644 |
|
PhpExtensionRequirementTest.php | File | 844 B | 0644 |
|
PhpVersionRequirementTest.php | File | 1.12 KB | 0644 |
|
RequirementCollectionTest.php | File | 1.79 KB | 0644 |
|
UrlTest.php | File | 1 KB | 0644 |
|