aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSébastien Determe <sd378r@intl.att.com>2017-09-28 14:37:27 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-28 14:37:27 +0000
commitec5784a5fa881d168c40183e7ddfbdc7ab9d8305 (patch)
tree929a456096d7bf4ef0042d6ecc323324f7a2b073 /src
parent9564673d03b62811373dfa7bfa12f3cc9e46f5d8 (diff)
parentf937d3bde3ed21e03b69f4909a084749b3234c53 (diff)
Merge "Removal of useless tests"
Diffstat (limited to 'src')
-rw-r--r--src/test/java/org/onap/clamp/clds/it/SdcIT.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/test/java/org/onap/clamp/clds/it/SdcIT.java b/src/test/java/org/onap/clamp/clds/it/SdcIT.java
index 46ac4089..22476305 100644
--- a/src/test/java/org/onap/clamp/clds/it/SdcIT.java
+++ b/src/test/java/org/onap/clamp/clds/it/SdcIT.java
@@ -52,22 +52,8 @@ public class SdcIT extends AbstractIT {
@Autowired
private SdcCatalogServices sdcCatalogServices;
- @BeforeClass
- public static void oneTimeSetUp() {
- System.setProperty("AJSC_CONF_HOME", System.getProperty("user.dir") + "/src/test/resources/");
- }
-
@Test
public void testTcaBlueprint() throws Exception {
- String modelProp = ResourceFileUtil.getResourceAsString("example/modelPropForPolicy.json");
- String modelBpmnProp = ResourceFileUtil.getResourceAsString("example/modelBpmnPropForPolicy.json");
- String modelName = "example-model06";
- String controlName = "ClosedLoop-FRWL-SIG04-1582f840-test-test-1234-005056a9d756";
- String docText = ResourceFileUtil.getResourceAsString("example/templatePropForTca.json");
- ModelProperties prop = new ModelProperties(modelName, controlName, CldsEvent.ACTION_SUBMIT,
- true, modelBpmnProp, modelProp);
- String blueprint = SdcReq.formatBlueprint(refProp, prop, docText);
- System.out.println("blueprint=" + blueprint);
- //assertEquals(blueprint, "");
+
}
}