0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-10 19:47:35 +00:00
kevinpapst_kimai2/tests/Plugin/PackageTest.php
2024-12-22 22:50:42 +01:00

38 lines
1 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\TestCase;
/**
* @covers \App\Plugin\Package
*/
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());
}
}