Initial OpenECOMP MSO commit
[so.git] / mso-catalog-db / src / test / java / org / openecomp / mso / db / catalog / beans / NetworkRecipeESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 08:22:12 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 NetworkRecipeESTest extends NetworkRecipeESTestscaffolding {
17
18   @Test(timeout = 4000)
19   public void test0()  throws Throwable  {
20       NetworkRecipe networkRecipe0 = new NetworkRecipe();
21       networkRecipe0.setOrchestrationUri("");
22       String string0 = networkRecipe0.toString();
23       assertEquals("RECIPE: null,uri=,networkType=null,networkParamXSD=null", string0);
24   }
25
26   @Test(timeout = 4000)
27   public void test1()  throws Throwable  {
28       NetworkRecipe networkRecipe0 = new NetworkRecipe();
29       networkRecipe0.setAction("WL:?f53^x");
30       String string0 = networkRecipe0.toString();
31       assertEquals("RECIPE: WL:?f53^x,uri=null,networkType=null,networkParamXSD=null", string0);
32   }
33
34   @Test(timeout = 4000)
35   public void test2()  throws Throwable  {
36       NetworkRecipe networkRecipe0 = new NetworkRecipe();
37       networkRecipe0.setNetworkType("RECIPE: ");
38       String string0 = networkRecipe0.getNetworkType();
39       assertEquals("RECIPE: ", string0);
40   }
41
42   @Test(timeout = 4000)
43   public void test3()  throws Throwable  {
44       NetworkRecipe networkRecipe0 = new NetworkRecipe();
45       networkRecipe0.setNetworkParamXSD("!R\"am4?r!");
46       String string0 = networkRecipe0.getNetworkParamXSD();
47       assertEquals("!R\"am4?r!", string0);
48   }
49
50   @Test(timeout = 4000)
51   public void test4()  throws Throwable  {
52       NetworkRecipe networkRecipe0 = new NetworkRecipe();
53       String string0 = networkRecipe0.getNetworkParamXSD();
54       assertNull(string0);
55   }
56
57   @Test(timeout = 4000)
58   public void test5()  throws Throwable  {
59       NetworkRecipe networkRecipe0 = new NetworkRecipe();
60       networkRecipe0.setNetworkType("");
61       String string0 = networkRecipe0.getNetworkType();
62       assertEquals("", string0);
63   }
64
65   @Test(timeout = 4000)
66   public void test6()  throws Throwable  {
67       NetworkRecipe networkRecipe0 = new NetworkRecipe();
68       networkRecipe0.setNetworkParamXSD("");
69       String string0 = networkRecipe0.getNetworkParamXSD();
70       assertEquals("", string0);
71   }
72
73   @Test(timeout = 4000)
74   public void test7()  throws Throwable  {
75       NetworkRecipe networkRecipe0 = new NetworkRecipe();
76       String string0 = networkRecipe0.getNetworkType();
77       assertNull(string0);
78   }
79 }