summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/unittests/utils/ModelConfDependentTest.java
blob: 2135b668e6f89a8dc0b741f8e84607aaf8c1661b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.be.unittests.utils;

import org.junit.BeforeClass;
import org.openecomp.sdc.common.test.BaseConfDependent;

public class ModelConfDependentTest extends BaseConfDependent {
	@BeforeClass
	public static void setupBeforeClass() {
        componentName = "catalog-model";
        confPath = "src/test/resources/config";
        setUp();
    }
}