Merge "updated ARIA version"
[so.git] / adapters / mso-vnf-adapter-async-client / src / test / java / org / openecomp / mso / adapters / vnf / async / client / DeleteVnfNotificationESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 10:48:02 GMT 2016
4  */
5
6 package org.openecomp.mso.adapters.vnf.async.client;
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 DeleteVnfNotificationESTest extends DeleteVnfNotificationESTestscaffolding {
17
18   @Test(timeout = 4000)
19   public void test00()  throws Throwable  {
20       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
21       deleteVnfNotification0.setCompleted(true);
22       boolean boolean0 = deleteVnfNotification0.isCompleted();
23       assertTrue(boolean0);
24   }
25
26   @Test(timeout = 4000)
27   public void test01()  throws Throwable  {
28       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
29       deleteVnfNotification0.messageId = "H\"7~I/-7S[";
30       String string0 = deleteVnfNotification0.getMessageId();
31       assertEquals("H\"7~I/-7S[", string0);
32   }
33
34   @Test(timeout = 4000)
35   public void test02()  throws Throwable  {
36       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
37       deleteVnfNotification0.messageId = "";
38       String string0 = deleteVnfNotification0.getMessageId();
39       assertEquals("", string0);
40   }
41
42   @Test(timeout = 4000)
43   public void test03()  throws Throwable  {
44       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
45       MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.USERDATA;
46       deleteVnfNotification0.exception = msoExceptionCategory0;
47       MsoExceptionCategory msoExceptionCategory1 = deleteVnfNotification0.getException();
48       assertEquals(MsoExceptionCategory.USERDATA, msoExceptionCategory1);
49   }
50
51   @Test(timeout = 4000)
52   public void test04()  throws Throwable  {
53       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
54       deleteVnfNotification0.errorMessage = "";
55       deleteVnfNotification0.errorMessage = "H\"7~I/-7S[";
56       String string0 = deleteVnfNotification0.getErrorMessage();
57       assertEquals("H\"7~I/-7S[", string0);
58   }
59
60   @Test(timeout = 4000)
61   public void test05()  throws Throwable  {
62       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
63       deleteVnfNotification0.setErrorMessage("");
64       String string0 = deleteVnfNotification0.getErrorMessage();
65       assertEquals("", string0);
66   }
67
68   @Test(timeout = 4000)
69   public void test06()  throws Throwable  {
70       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
71       boolean boolean0 = deleteVnfNotification0.isCompleted();
72       assertFalse(boolean0);
73   }
74
75   @Test(timeout = 4000)
76   public void test07()  throws Throwable  {
77       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
78       deleteVnfNotification0.getException();
79   }
80
81   @Test(timeout = 4000)
82   public void test08()  throws Throwable  {
83       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
84       String string0 = deleteVnfNotification0.getErrorMessage();
85       assertNull(string0);
86   }
87
88   @Test(timeout = 4000)
89   public void test09()  throws Throwable  {
90       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
91       String string0 = deleteVnfNotification0.getMessageId();
92       assertNull(string0);
93   }
94
95   @Test(timeout = 4000)
96   public void test10()  throws Throwable  {
97       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
98       deleteVnfNotification0.setMessageId("Jl^?zBSSPj<c<rl");
99       assertEquals("Jl^?zBSSPj<c<rl", deleteVnfNotification0.getMessageId());
100   }
101
102   @Test(timeout = 4000)
103   public void test11()  throws Throwable  {
104       DeleteVnfNotification deleteVnfNotification0 = new DeleteVnfNotification();
105       MsoExceptionCategory msoExceptionCategory0 = deleteVnfNotification0.exception;
106       deleteVnfNotification0.setException(msoExceptionCategory0);
107       assertNull(deleteVnfNotification0.getErrorMessage());
108   }
109 }