public function test_getProductMageIdByOdooId()
 {
     /** === Test Data === */
     $ODOO_ID = 21;
     $MAGE_ID = 43;
     /** === Setup Mocks === */
     // $result = $this->_getMageIdByOdooId(EntityProduct::ENTITY_NAME, $odooId);
     // $items = $this->_repoBasic->getEntities($entityName, null, $where);
     $this->mRepoGeneric->shouldReceive('getEntities')->once()->andReturn([[IOdooEntity::ATTR_MAGE_REF => $MAGE_ID]]);
     /** === Call and asserts  === */
     $res = $this->obj->getProductMageIdByOdooId($ODOO_ID);
     $this->assertEquals($MAGE_ID, $res);
 }