diff options
author | Sébastien Determe <sd378r@intl.att.com> | 2017-09-28 14:37:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-28 14:37:27 +0000 |
commit | ec5784a5fa881d168c40183e7ddfbdc7ab9d8305 (patch) | |
tree | 929a456096d7bf4ef0042d6ecc323324f7a2b073 | |
parent | 9564673d03b62811373dfa7bfa12f3cc9e46f5d8 (diff) | |
parent | f937d3bde3ed21e03b69f4909a084749b3234c53 (diff) |
Merge "Removal of useless tests"
-rw-r--r-- | src/test/java/org/onap/clamp/clds/it/SdcIT.java | 16 |
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, ""); + } } |