re base code
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / info / ArtifactAccessInfoTest.java
1 package org.openecomp.sdc.be.info;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.be.resources.data.ESArtifactData;
5
6 import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
7 import static org.hamcrest.MatcherAssert.assertThat;
8
9
10 public class ArtifactAccessInfoTest {
11
12
13     @Test
14     public void shouldHaveValidGettersAndSetters() {
15         assertThat(ArtifactAccessInfo.class, hasValidGettersAndSetters());
16     }
17
18     @Test
19     public void testCtor() throws Exception {
20         new ArtifactAccessInfo(new ESArtifactData());
21
22     }
23 }