aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/impl/heattotosca/sharedresource/HeatSharedResourceTest.java
blob: 2395fa00db02b1719b092d99bcc7e3238f901ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.openecomp.sdc.translator.impl.heattotosca.sharedresource;

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

public class HeatSharedResourceTest extends BaseResourceTranslationTest {

  {
    inputFilesPath = "/mock/heat/sharedresources/inputs";
    outputFilesPath = "/mock/heat/sharedresources/expectedoutputfiles";
  }

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


}