GenericVnfTest, Don't use assertNotNull() inside a try-catch catching an AssertionError 44/129944/4
authorGanesh <ganesh.c@samsung.com>
Fri, 15 Jul 2022 08:11:28 +0000 (13:41 +0530)
committerKAPIL SINGAL <ks220y@att.com>
Mon, 18 Jul 2022 13:47:16 +0000 (13:47 +0000)
Signed-off-by: Ganesh <ganesh.c@samsung.com>
Change-Id: I1212a1b20dfca179b1b5be6b3147242d4f52a11c
Issue-ID: CCSDK-3476

adaptors/aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/GenericVnfTest.java

index 66d34a8..0edb9d3 100755 (executable)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * openECOMP : SDN-C
  * ================================================================================
- * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights
- *                         reserved.
+ * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2022 Samsung Electronics Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -48,6 +48,7 @@ import org.onap.ccsdk.sli.adaptors.aai.AAIClient;
 import org.onap.ccsdk.sli.adaptors.aai.AAIRequest;
 import org.onap.ccsdk.sli.adaptors.aai.AAIService;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
+import org.onap.ccsdk.sli.core.sli.SvcLogicException;
 import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus;
 import org.onap.aai.inventory.v25.GenericVnf;
 import org.slf4j.Logger;
@@ -106,13 +107,8 @@ public class GenericVnfTest {
 
             QueryStatus resp = client.save("generic-vnf", false, false, "generic-vnf.vnf-id = '"+uuid+"'", data, "aaidata", ctx);
             assertNotNull(ctx);
-
-        }
-        catch (Throwable e)
-        {
-
-        }
-        ;
+       }
+        catch (SvcLogicException ignored) {  };
     }
 
     @Test