Refactoring Consolidation Service
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / FunctionalMenuInfoTest.java
1 package org.openecomp.sdc.be.model;
2
3 import org.junit.Test;
4
5
6 public class FunctionalMenuInfoTest {
7
8         private FunctionalMenuInfo createTestSubject() {
9                 return new FunctionalMenuInfo();
10         }
11
12         
13         @Test
14         public void testGetFunctionalMenu() throws Exception {
15                 FunctionalMenuInfo testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getFunctionalMenu();
21         }
22
23         
24         @Test
25         public void testSetFunctionalMenu() throws Exception {
26                 FunctionalMenuInfo testSubject;
27                 String functionalMenu = "";
28
29                 // default test
30                 testSubject = createTestSubject();
31                 testSubject.setFunctionalMenu(functionalMenu);
32         }
33
34         
35         @Test
36         public void testToString() throws Exception {
37                 FunctionalMenuInfo testSubject;
38                 String result;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 result = testSubject.toString();
43         }
44 }