public function test_getRepresentative_byAssetCode_idNotFound()
 {
     /** === Test Data === */
     $assetTypeCode = 'code';
     /** === Setup Mocks === */
     // $typeId = $this->_repoTypeAsset->getIdByCode($typeCode);
     $this->mRepoTypeAsset->shouldReceive('getIdByCode')->once()->andReturn(null);
     /** === Call and asserts  === */
     $req = new Request\GetRepresentative();
     $req->setAssetTypeCode($assetTypeCode);
     $resp = $this->obj->getRepresentative($req);
     $this->assertFalse($resp->isSucceed());
 }