2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
use App\Models\Depreciation;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class DepreciationTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
public function testDepreciationAdd()
|
|
|
|
{
|
2017-06-12 17:39:03 -07:00
|
|
|
$depreciations = factory(Depreciation::class)->make();
|
2016-03-25 01:18:05 -07:00
|
|
|
$values = [
|
|
|
|
'name' => $depreciations->name,
|
|
|
|
'months' => $depreciations->months,
|
|
|
|
];
|
|
|
|
|
|
|
|
Depreciation::create($values);
|
|
|
|
$this->tester->seeRecord('depreciations', $values);
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:39:03 -07:00
|
|
|
public function testFailsEmptyValidation()
|
|
|
|
{
|
|
|
|
// An Asset requires a name, a qty, and a category_id.
|
|
|
|
$a = Depreciation::create();
|
|
|
|
$this->assertFalse($a->isValid());
|
|
|
|
|
|
|
|
$fields = [
|
|
|
|
'name' => 'name',
|
|
|
|
'months' => 'months',
|
|
|
|
];
|
|
|
|
$errors = $a->getErrors();
|
|
|
|
foreach ($fields as $field => $fieldTitle) {
|
|
|
|
$this->assertEquals($errors->get($field)[0], "The ${fieldTitle} field is required.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testADepreciationHasModels()
|
|
|
|
{
|
|
|
|
$depreciation = factory(Depreciation::class)->create();
|
|
|
|
factory(App\Models\AssetModel::class, 5)->create(['depreciation_id'=>$depreciation->id]);
|
|
|
|
$this->assertEquals(5,$depreciation->has_models());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testADepreciationHasLicenses()
|
|
|
|
{
|
|
|
|
$depreciation = factory(Depreciation::class)->create();
|
|
|
|
factory(App\Models\License::class, 5)->create(['depreciation_id'=>$depreciation->id]);
|
|
|
|
$this->assertEquals(5,$depreciation->has_licenses());
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|