Initial OpenECOMP MSO commit
[so.git] / adapters / mso-adapter-utils / src / test / java / org / openecomp / mso / openstack / beans / PoolESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 08:49:52 GMT 2016
4  */
5
6 package org.openecomp.mso.openstack.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 PoolESTest extends PoolESTestscaffolding {
17
18   @Test(timeout = 4000)
19   public void test0()  throws Throwable  {
20       Pool pool0 = new Pool();
21       pool0.setStart("Allocation_pool [start=null, end=null]");
22       String string0 = pool0.getStart();
23       assertEquals("Allocation_pool [start=null, end=null]", string0);
24   }
25
26   @Test(timeout = 4000)
27   public void test1()  throws Throwable  {
28       Pool pool0 = new Pool();
29       pool0.setEnd("Allocation_pool [start=null, end=null]");
30       String string0 = pool0.getEnd();
31       assertEquals("Allocation_pool [start=null, end=null]", string0);
32   }
33
34   @Test(timeout = 4000)
35   public void test2()  throws Throwable  {
36       Pool pool0 = new Pool();
37       String string0 = pool0.getEnd();
38       assertNull(string0);
39   }
40
41   @Test(timeout = 4000)
42   public void test3()  throws Throwable  {
43       Pool pool0 = new Pool();
44       pool0.setStart("");
45       String string0 = pool0.getStart();
46       assertEquals("", string0);
47   }
48
49   @Test(timeout = 4000)
50   public void test4()  throws Throwable  {
51       Pool pool0 = new Pool();
52       String string0 = pool0.toString();
53       assertEquals("Allocation_pool [start=null, end=null]", string0);
54   }
55
56   @Test(timeout = 4000)
57   public void test5()  throws Throwable  {
58       Pool pool0 = new Pool();
59       pool0.setEnd("");
60       String string0 = pool0.getEnd();
61       assertEquals("", string0);
62   }
63
64   @Test(timeout = 4000)
65   public void test6()  throws Throwable  {
66       Pool pool0 = new Pool();
67       String string0 = pool0.getStart();
68       assertNull(string0);
69   }
70 }