Rework of the designer UI (part4)
[clamp.git] / src / test / java / org / onap / clamp / clds / AbstractIT.java
1 package org.onap.clamp.clds;
2
3 import org.junit.BeforeClass;
4 import org.onap.clamp.clds.client.PolicyClient;
5 import org.onap.clamp.clds.model.refprop.RefProp;
6 import org.springframework.beans.factory.annotation.Autowired;
7 import org.springframework.test.context.ActiveProfiles;
8
9 /**
10  * Created by j on 6/16/17.
11  */
12 @ActiveProfiles("clamp-default")
13 public abstract class AbstractIT {
14
15     @Autowired
16     protected RefProp refProp;
17     @Autowired
18     protected PolicyClient policyClient;
19
20     @BeforeClass
21     public static void oneTimeSetUp() {
22         System.setProperty("AJSC_CONF_HOME", System.getProperty("user.dir") + "/src/it/resources/");
23         System.setProperty("CLDS_DCAE_URL", "http://localhost:13786/cl-dcae-services");
24     }
25 }