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
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testDepreciationAdd()
|
|
|
|
// {
|
|
|
|
// $depreciations = factory(Depreciation::class)->make();
|
|
|
|
// $values = [
|
|
|
|
// 'name' => $depreciations->name,
|
|
|
|
// 'months' => $depreciations->months,
|
|
|
|
// ];
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// Depreciation::create($values);
|
|
|
|
// $this->tester->seeRecord('depreciations', $values);
|
|
|
|
// }
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// public function testFailsEmptyValidation()
|
|
|
|
// {
|
|
|
|
// // An Asset requires a name, a qty, and a category_id.
|
|
|
|
// $a = Depreciation::create();
|
|
|
|
// $this->assertFalse($a->isValid());
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// $fields = [
|
|
|
|
// 'name' => 'name',
|
|
|
|
// 'months' => 'months',
|
|
|
|
// ];
|
|
|
|
// $errors = $a->getErrors();
|
|
|
|
// foreach ($fields as $field => $fieldTitle) {
|
|
|
|
// $this->assertEquals($errors->get($field)[0], "The ${fieldTitle} field is required.");
|
|
|
|
// }
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// 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());
|
|
|
|
// }
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2018-02-22 21:46:58 -08:00
|
|
|
// 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
|
|
|
}
|