CustomerLogTest.php 450 B

12345678910111213141516171819
  1. <?php
  2. use App\CustomerLog;
  3. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  4. use Illuminate\Foundation\Testing\RefreshDatabase;
  5. use Tests\TestCase;
  6. class CustomerLogTest extends TestCase
  7. {
  8. /**
  9. * @test
  10. */
  11. public function customerLog_belongsTo_customerLogStatus()
  12. {
  13. $customerLog = factory(CustomerLog::class)->create();
  14. $this->assertInstanceOf(BelongsTo::class, $customerLog->customerLogStatus());
  15. }
  16. }