mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
222ee8e0bf
Signed-off-by: snipe <snipe@snipe.net>
53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
<?php
|
|
namespace Tests\Unit;
|
|
|
|
use App\Models\Depreciation;
|
|
use Tests\Unit\BaseTest;
|
|
use App\Models\Category;
|
|
use App\Models\License;
|
|
use App\Models\AssetModel;
|
|
|
|
class DepreciationTest extends BaseTest
|
|
{
|
|
/**
|
|
* @var \UnitTester
|
|
*/
|
|
protected $tester;
|
|
|
|
|
|
|
|
public function testADepreciationHasModels()
|
|
{
|
|
$this->createValidAssetModel();
|
|
$depreciation = Depreciation::factory()->create();
|
|
|
|
AssetModel::factory()
|
|
->mbp13Model()
|
|
->count(5)
|
|
->create(
|
|
[
|
|
'category_id' => Category::factory()->assetLaptopCategory(),
|
|
'depreciation_id' => $depreciation->id
|
|
]);
|
|
|
|
|
|
$this->assertEquals(5, $depreciation->models->count());
|
|
}
|
|
|
|
public function testADepreciationHasLicenses()
|
|
{
|
|
|
|
$depreciation = Depreciation::factory()->create();
|
|
License::factory()
|
|
->count(5)
|
|
->photoshop()
|
|
->create(
|
|
[
|
|
'category_id' => Category::factory()->licenseGraphicsCategory(),
|
|
'depreciation_id' => $depreciation->id
|
|
]);
|
|
|
|
$this->assertEquals(5, $depreciation->licenses()->count());
|
|
}
|
|
}
|