Initial OpenECOMP MSO commit
[so.git] / mso-catalog-db / src / test / java / org / openecomp / mso / db / catalog / beans / VnfRecipeESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 08:23:26 GMT 2016
4  */
5
6 package org.openecomp.mso.db.catalog.beans;
7
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10
11 import org.evosuite.runtime.EvoRunner;
12 import org.evosuite.runtime.EvoRunnerParameters;
13 import org.junit.runner.RunWith;
14
15 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
16 public class VnfRecipeESTest extends VnfRecipeESTestscaffolding {
17
18   @Test(timeout = 4000)
19   public void test0()  throws Throwable  {
20       VnfRecipe vnfRecipe0 = new VnfRecipe();
21       vnfRecipe0.setVnfParamXSD("@!JsE$ &");
22       String string0 = vnfRecipe0.toString();
23       assertEquals("RECIPE: null,uri=null,vnfParamXSD=@!JsE$ &,serviceType=null,vfModuleId=null", string0);
24   }
25
26   @Test(timeout = 4000)
27   public void test1()  throws Throwable  {
28       VnfRecipe vnfRecipe0 = new VnfRecipe();
29       vnfRecipe0.setVnfType("<[sFL");
30       String string0 = vnfRecipe0.getVnfType();
31       assertEquals("<[sFL", string0);
32   }
33
34   @Test(timeout = 4000)
35   public void test2()  throws Throwable  {
36       VnfRecipe vnfRecipe0 = new VnfRecipe();
37       vnfRecipe0.setVnfType("");
38       String string0 = vnfRecipe0.getVnfType();
39       assertEquals("", string0);
40   }
41
42   @Test(timeout = 4000)
43   public void test3()  throws Throwable  {
44       VnfRecipe vnfRecipe0 = new VnfRecipe();
45       vnfRecipe0.setVnfParamXSD("");
46       String string0 = vnfRecipe0.getVnfParamXSD();
47       assertEquals("", string0);
48   }
49
50   @Test(timeout = 4000)
51   public void test4()  throws Throwable  {
52       VnfRecipe vnfRecipe0 = new VnfRecipe();
53       vnfRecipe0.setVfModuleId("QL");
54       String string0 = vnfRecipe0.getVfModuleId();
55       assertEquals("QL", string0);
56   }
57
58   @Test(timeout = 4000)
59   public void test5()  throws Throwable  {
60       VnfRecipe vnfRecipe0 = new VnfRecipe();
61       vnfRecipe0.setVfModuleId("");
62       String string0 = vnfRecipe0.getVfModuleId();
63       assertEquals("", string0);
64   }
65
66   @Test(timeout = 4000)
67   public void test6()  throws Throwable  {
68       VnfRecipe vnfRecipe0 = new VnfRecipe();
69       String string0 = vnfRecipe0.getVnfParamXSD();
70       assertNull(string0);
71   }
72
73   @Test(timeout = 4000)
74   public void test7()  throws Throwable  {
75       VnfRecipe vnfRecipe0 = new VnfRecipe();
76       vnfRecipe0.setVnfParamXSD("RECIPE: null,uri=null,vnfParamXSD=null,serviceType=null,vfModuleId=null");
77       String string0 = vnfRecipe0.getVnfParamXSD();
78       assertEquals("RECIPE: null,uri=null,vnfParamXSD=null,serviceType=null,vfModuleId=null", string0);
79   }
80
81   @Test(timeout = 4000)
82   public void test8()  throws Throwable  {
83       VnfRecipe vnfRecipe0 = new VnfRecipe();
84       String string0 = vnfRecipe0.getVfModuleId();
85       assertNull(string0);
86   }
87
88   @Test(timeout = 4000)
89   public void test9()  throws Throwable  {
90       VnfRecipe vnfRecipe0 = new VnfRecipe();
91       String string0 = vnfRecipe0.getVnfType();
92       assertNull(string0);
93   }
94 }