Files
kimai2/tests/Plugin/PackageTest.php
2025-08-11 18:57:42 +02:00

38 lines
1.0 KiB
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Plugin;
use App\Plugin\Package;
use App\Plugin\PluginMetadata;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
#[CoversClass(Package::class)]
class PackageTest extends TestCase
{
public function testGetPackageFileReturnsCorrectFile(): void
{
$fileInfo = new \SplFileInfo('path/to/package.zip');
$metadata = $this->createMock(PluginMetadata::class);
$package = new Package($fileInfo, $metadata);
self::assertSame($fileInfo, $package->getPackageFile());
}
public function testGetMetadataReturnsCorrectMetadata(): void
{
$fileInfo = new \SplFileInfo('path/to/package.zip');
$metadata = $this->createMock(PluginMetadata::class);
$package = new Package($fileInfo, $metadata);
self::assertSame($metadata, $package->getMetadata());
}
}