49 lines
1012 B
PHP
49 lines
1012 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Models;
|
|
|
|
use App\Models\Call;
|
|
use App\Models\Emotion;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Tests\TestCase;
|
|
|
|
class CallTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
/** @test */
|
|
public function it_has_one_contact()
|
|
{
|
|
$call = Call::factory()->create();
|
|
|
|
$this->assertTrue($call->contact()->exists());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_has_one_author()
|
|
{
|
|
$call = Call::factory()->create();
|
|
|
|
$this->assertTrue($call->author()->exists());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_has_one_call_reason()
|
|
{
|
|
$call = Call::factory()->create();
|
|
|
|
$this->assertTrue($call->callReason()->exists());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_has_one_emotion()
|
|
{
|
|
$emotion = Emotion::factory()->create();
|
|
$call = Call::factory()->create([
|
|
'emotion_id' => $emotion->id,
|
|
]);
|
|
|
|
$this->assertTrue($call->emotion()->exists());
|
|
}
|
|
}
|