92fc2fd4cfeb45ab51bf2a15cffdb9bf833f0b20
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / tosca / ArtifactTypesTest.java
1 package org.openecomp.sdc.be.tosca;
2
3 import java.util.List;
4
5 import org.junit.Test;
6 import org.openecomp.sdc.generator.data.ArtifactType;
7
8
9 public class ArtifactTypesTest {
10
11         private ArtifactTypes createTestSubject() {
12                 return new ArtifactTypes();
13         }
14
15         
16         @Test
17         public void testGetArtifactTypes() throws Exception {
18                 ArtifactTypes testSubject;
19                 List<ArtifactType> result;
20
21                 // default test
22                 testSubject = createTestSubject();
23                 result = testSubject.getArtifactTypes();
24         }
25
26         
27         @Test
28         public void testSetArtifactTypes() throws Exception {
29                 ArtifactTypes testSubject;
30                 List<ArtifactType> artifactTypes = null;
31
32                 // default test
33                 testSubject = createTestSubject();
34                 testSubject.setArtifactTypes(artifactTypes);
35         }
36 }