Merge "updated ARIA version"
[so.git] / adapters / mso-adapters-rest-interface / src / test / java / org / openecomp / mso / adapters / sdncrest / RequestInformationESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Feb 20 14:10:13 GMT 2017
4  */
5
6 package org.openecomp.mso.adapters.sdncrest;
7
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10 import org.evosuite.runtime.EvoRunner;
11 import org.evosuite.runtime.EvoRunnerParameters;
12 import org.junit.runner.RunWith;
13
14 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true)
15 public class RequestInformationESTest extends RequestInformationESTestscaffolding {
16
17   @Test(timeout = 4000)
18   public void test00()  throws Throwable  {
19       RequestInformation requestInformation0 = new RequestInformation();
20       String string0 = requestInformation0.getSource();
21       assertNull(string0);
22   }
23
24   @Test(timeout = 4000)
25   public void test01()  throws Throwable  {
26       RequestInformation requestInformation0 = new RequestInformation("", "", "");
27       String string0 = requestInformation0.getSource();
28       assertEquals("", string0);
29   }
30
31   @Test(timeout = 4000)
32   public void test02()  throws Throwable  {
33       RequestInformation requestInformation0 = new RequestInformation();
34       String string0 = requestInformation0.getRequestId();
35       assertNull(string0);
36   }
37
38   @Test(timeout = 4000)
39   public void test03()  throws Throwable  {
40       RequestInformation requestInformation0 = new RequestInformation("82W?GC", "", "82W?GC");
41       String string0 = requestInformation0.getNotificationUrl();
42       assertEquals("82W?GC", string0);
43       assertEquals("82W?GC", requestInformation0.getRequestId());
44       assertEquals("", requestInformation0.getSource());
45   }
46
47   @Test(timeout = 4000)
48   public void test04()  throws Throwable  {
49       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
50       String string0 = requestInformation0.getSource();
51       assertEquals("3*5=IrA", string0);
52       assertEquals("", requestInformation0.getNotificationUrl());
53       assertEquals("", requestInformation0.getRequestId());
54   }
55
56   @Test(timeout = 4000)
57   public void test05()  throws Throwable  {
58       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
59       assertEquals("", requestInformation0.getRequestId());
60
61       requestInformation0.setRequestId("3*5=IrA");
62       requestInformation0.getRequestId();
63       assertEquals("3*5=IrA", requestInformation0.getSource());
64   }
65
66   @Test(timeout = 4000)
67   public void test06()  throws Throwable  {
68       RequestInformation requestInformation0 = new RequestInformation();
69       String string0 = requestInformation0.getNotificationUrl();
70       assertNull(string0);
71   }
72
73   @Test(timeout = 4000)
74   public void test07()  throws Throwable  {
75       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
76       assertEquals("", requestInformation0.getNotificationUrl());
77
78       requestInformation0.setNotificationUrl("3*5=IrA");
79       assertEquals("3*5=IrA", requestInformation0.getSource());
80   }
81
82   @Test(timeout = 4000)
83   public void test08()  throws Throwable  {
84       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
85       String string0 = requestInformation0.getNotificationUrl();
86       assertEquals("", string0);
87       assertEquals("", requestInformation0.getRequestId());
88       assertEquals("3*5=IrA", requestInformation0.getSource());
89   }
90
91   @Test(timeout = 4000)
92   public void test09()  throws Throwable  {
93       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
94       String string0 = requestInformation0.getRequestId();
95       assertEquals("", string0);
96       assertEquals("", requestInformation0.getNotificationUrl());
97       assertEquals("3*5=IrA", requestInformation0.getSource());
98   }
99
100   @Test(timeout = 4000)
101   public void test10()  throws Throwable  {
102       RequestInformation requestInformation0 = new RequestInformation("", "3*5=IrA", "");
103       assertEquals("3*5=IrA", requestInformation0.getSource());
104
105       requestInformation0.setSource("");
106       assertEquals("", requestInformation0.getNotificationUrl());
107   }
108 }