snipe-it/tests/unit/SupplierTest.php
snipe d08c1787a1 First steps at getting dusk working
Signed-off-by: snipe <snipe@snipe.net>
2021-11-30 20:09:29 -08:00

29 lines
663 B
PHP

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