aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/impl/heattotosca/nested/separatevol/NestedAndSeparateVolTranslationTest.java
blob: 42697059238a4f6abade0a0e9a0cdd70932c86a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.translator.impl.heattotosca.nested.separatevol;

import org.openecomp.sdc.translator.services.heattotosca.impl.BaseResourceTranslationTest;
import org.junit.Before;
import org.junit.Test;

import java.io.IOException;

public class NestedAndSeparateVolTranslationTest extends BaseResourceTranslationTest {

  @Before
  public void setUp() throws IOException {
    inputFilesPath = "/mock/services/heattotosca/hot-nimbus-oam-volumes_v1.0/inputfiles";
    outputFilesPath = "/mock/services/heattotosca/hot-nimbus-oam-volumes_v1.0/out";
    super.setUp();
  }

  @Test
  public void testTranslate() throws Exception {
    testTranslation();
  }
}