/**
  * @test
  */
 public function efficiency_report_logs()
 {
     $log = EfficiencyReportLog::first();
     $this->assertInstanceOf(Department::class, $log->department);
     $this->assertInstanceOf(EfficiencyIssue::class, $log->efficiencyIssue);
     $this->assertInstanceOf(User::class, $log->createdBy);
     $this->assertInstanceOf(User::class, $log->updatedBy);
     $this->assertInstanceOf(User::class, $log->shiftOperator);
 }