2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2021-11-30 20:09:29 -08:00
|
|
|
namespace Tests\Unit;
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Company;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2021-06-10 13:15:52 -07:00
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
2021-11-30 20:09:29 -08:00
|
|
|
use Tests\Unit\BaseTest;
|
2021-12-02 15:02:46 -08:00
|
|
|
use App\Models\Component;
|
|
|
|
use App\Models\Asset;
|
|
|
|
use App\Models\Consumable;
|
2021-12-02 16:14:45 -08:00
|
|
|
use App\Models\User;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-07-11 20:37:02 -07:00
|
|
|
class CompanyTest extends BaseTest
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
|
|
|
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
public function testACompanyCanHaveUsers()
|
|
|
|
{
|
2021-12-02 16:14:45 -08:00
|
|
|
$company = Company::factory()->create();
|
2021-12-02 16:43:03 -08:00
|
|
|
$user = User::factory()
|
2021-12-02 16:14:45 -08:00
|
|
|
->create(
|
|
|
|
[
|
2021-12-02 16:43:03 -08:00
|
|
|
'company_id'=> $company->id
|
2021-12-02 16:14:45 -08:00
|
|
|
]
|
|
|
|
);
|
2017-06-12 17:39:03 -07:00
|
|
|
|
2021-12-02 16:14:45 -08:00
|
|
|
$this->assertCount(1, $company->users);
|
2021-06-10 13:15:52 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|