snipe-it/tests/unit/SupplierTest.php

27 lines
616 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
use App\Models\Supplier;
use Illuminate\Support\Facades\Hash;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class SupplierTest extends BaseTest
2016-03-25 01:18:05 -07:00
{
/**
* @var \UnitTester
*/
protected $tester;
// public function testSupplierAdd()
// {
// $supplier = factory(Supplier::class)->make();
// $values = [
// 'name' => $supplier->name,
// ];
2016-03-25 01:18:05 -07:00
// Supplier::create($values);
// $this->tester->seeRecord('suppliers', $values);
// }
2016-03-25 01:18:05 -07:00
}