aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/info/ArtifactAccessInfoTest.java
blob: 5828f7198346bfadbcfdb060d88b16988d4c8846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.sdc.be.info;

import org.junit.Test;
import org.openecomp.sdc.be.resources.data.ESArtifactData;

import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
import static org.hamcrest.MatcherAssert.assertThat;


public class ArtifactAccessInfoTest {


    @Test
    public void shouldHaveValidGettersAndSetters() {
        assertThat(ArtifactAccessInfo.class, hasValidGettersAndSetters());
    }

    @Test
    public void testCtor() throws Exception {
        new ArtifactAccessInfo(new ESArtifactData());

    }
}