/**
  * @test
  *
  * @covers Pipedrive\Organizations\Controller::getOne
  *
  * @uses Pipedrive\Organizations\Controller::__construct
  * @uses Pipedrive\Organizations\Organization
  * @uses Pipedrive\Organizations\OrganizationDataTransferObject
  */
 public function getOneShouldReturnNotFound()
 {
     $targetId = '10';
     $this->getOrganizationRepository()->expects($this->once())->method('find')->with($targetId)->willReturn(null);
     $response = $this->controller->getOne($targetId);
     $this->assertInstanceOf(Response::class, $response);
     $this->assertEquals(Response::HTTP_NOT_FOUND, $response->getStatusCode());
 }