@@ -183,7 +183,7 @@ public void testFindAll() throws FMSException {
183183 }
184184
185185 @ Test (enabled = false )
186- public void testExecuteQuery_get () throws FMSException , InstantiationException , IllegalAccessException {
186+ public void testExecuteQuery_get () throws FMSException {
187187 Customer customer = GenerateQuery .createQueryEntity (Customer .class );
188188 String query = select ($ (customer .getId ()), $ (customer .getDisplayName ())).where ($ (customer .getId ()).eq (EntityCreator .customer .getId ())).generate ();
189189
@@ -197,7 +197,7 @@ public void testExecuteQuery_get() throws FMSException, InstantiationException,
197197 }
198198
199199 @ Test (enabled = false )
200- public void testExecuteQuery_post () throws FMSException , InstantiationException , IllegalAccessException {
200+ public void testExecuteQuery_post () throws FMSException {
201201 Customer customer = GenerateQuery .createQueryEntity (Customer .class );
202202 String query = select ($ (customer .getId ()), $ (customer .getDisplayName ())).where ($ (customer .getId ()).eq (EntityCreator .customer .getId ())).generate ();
203203 String newQuery = " " ;
@@ -214,7 +214,7 @@ public void testExecuteQuery_post() throws FMSException, InstantiationException,
214214 }
215215
216216 @ Test (enabled = false )
217- public void testExecuteQuery_postCompression () throws FMSException , InstantiationException , IllegalAccessException {
217+ public void testExecuteQuery_postCompression () throws FMSException {
218218 Customer customer = GenerateQuery .createQueryEntity (Customer .class );
219219 String query = select ($ (customer .getId ()), $ (customer .getDisplayName ())).where ($ (customer .getId ()).eq (EntityCreator .customer .getId ())).generate ();
220220 String newQuery = " " ;
@@ -249,7 +249,7 @@ public void testExecuteQuery_invalidQuery() {
249249 }
250250
251251 @ Test (enabled = false )
252- public void testExecuteBatch () throws FMSException , InstantiationException , IllegalAccessException {
252+ public void testExecuteBatch () throws FMSException {
253253 BatchOperation batchOperation = new BatchOperation ();
254254
255255 Customer customer = new Customer ();
@@ -296,7 +296,7 @@ public void testExecuteBatch_Entity() throws FMSException {
296296 }
297297
298298 @ Test (enabled = false )
299- public void testExecuteBatch_Query () throws FMSException , InstantiationException , IllegalAccessException {
299+ public void testExecuteBatch_Query () throws FMSException {
300300 BatchOperation batchOperation = new BatchOperation ();
301301
302302 Customer c = GenerateQuery .createQueryEntity (Customer .class );
0 commit comments