for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\Unit;
use App\Services\Auth;
class JobPolicyTest extends BasePolicyTest {
public function testAuthIdentifier()
{
//TODO: write a real test
//$authIdentity = factory(\App\Models\User::class)->make();
$this->assertDatabaseMissing('users', [
'email' => '[email protected]'
]);
$this->assertEquals('123','123');
}