4f12640b1f3f29281a053cc30f64d4f5105e3f49
[sdc.git] /
1 package org.openecomp.sdc.be.dao.cassandra.schema.tables;
2
3 import java.util.List;
4 import java.util.Map;
5
6 import javax.annotation.Generated;
7
8 import org.apache.commons.lang3.tuple.ImmutablePair;
9 import org.junit.Test;
10
11 import com.datastax.driver.core.DataType;
12
13
14 public class CategoryEventTableDescriptionTest {
15
16         private CategoryEventTableDescription createTestSubject() {
17                 return new CategoryEventTableDescription();
18         }
19
20         
21         @Test
22         public void testPrimaryKeys() throws Exception {
23                 CategoryEventTableDescription testSubject;
24                 List<ImmutablePair<String, DataType>> result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.primaryKeys();
29         }
30
31         
32         @Test
33         public void testClusteringKeys() throws Exception {
34                 CategoryEventTableDescription testSubject;
35                 List<ImmutablePair<String, DataType>> result;
36
37                 // default test
38                 testSubject = createTestSubject();
39                 result = testSubject.clusteringKeys();
40         }
41
42         
43
44         
45         @Test
46         public void testGetKeyspace() throws Exception {
47                 CategoryEventTableDescription testSubject;
48                 String result;
49
50                 // default test
51                 testSubject = createTestSubject();
52                 result = testSubject.getKeyspace();
53         }
54
55         
56         @Test
57         public void testGetTableName() throws Exception {
58                 CategoryEventTableDescription testSubject;
59                 String result;
60
61                 // default test
62                 testSubject = createTestSubject();
63                 result = testSubject.getTableName();
64         }
65 }