summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/api/tests/deploy_tool/DeployToolTest.java
blob: 46836f23be0ae08099bc75521364540bd91aabae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.dcae.ci.api.tests.deploy_tool;


import org.onap.dcae.ci.api.tests.DcaeRestBaseTest;
import org.onap.sdc.dcae.composition.vfcmt.Vfcmt;
import org.testng.annotations.Test;

import static org.assertj.core.api.Assertions.assertThat;

public class DeployToolTest  extends DcaeRestBaseTest {

    @Test
    public void verifyDeployToolVfcmtExist() throws Exception {
        Vfcmt[] vfcmts = client.getAllBaseVfcmts();
        assertThat(vfcmts).isNotNull();
        assertThat(vfcmts.length).isGreaterThan(0);
    }

}