aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/tenantrest/TenantExceptionResponseESTest.java
blob: 1694ca2ae7d808781357dba942fb03e4b2bd75a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * This file was automatically generated by EvoSuite
 * Mon Nov 14 09:25:22 GMT 2016
 */

package org.openecomp.mso.adapters.tenantrest;

import org.junit.Test;
import static org.junit.Assert.*;

import org.openecomp.mso.openstack.exceptions.MsoExceptionCategory;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;

@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
public class TenantExceptionResponseESTest extends TenantExceptionResponseESTestscaffolding {

  @Test(timeout = 4000)
  public void test00()  throws Throwable  {
      MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.OPENSTACK;
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse((String) null, msoExceptionCategory0, true);
      Boolean boolean0 = tenantExceptionResponse0.getRolledBack();
      assertTrue(boolean0);
  }

  @Test(timeout = 4000)
  public void test01()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("sxH3DHvAo$");
      String string0 = tenantExceptionResponse0.getMessage();
      assertEquals("sxH3DHvAo$", string0);
  }

  @Test(timeout = 4000)
  public void test02()  throws Throwable  {
      MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.OPENSTACK;
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse((String) null, msoExceptionCategory0, true);
      MsoExceptionCategory msoExceptionCategory1 = tenantExceptionResponse0.getCategory();
      assertSame(msoExceptionCategory0, msoExceptionCategory1);
  }

  @Test(timeout = 4000)
  public void test03()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      tenantExceptionResponse0.setMessage("1LGUz =Y?.wyJ");
      assertNull(tenantExceptionResponse0.getCategory());
  }

  @Test(timeout = 4000)
  public void test04()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      Boolean boolean0 = tenantExceptionResponse0.getRolledBack();
      assertNull(boolean0);
  }

  @Test(timeout = 4000)
  public void test05()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      tenantExceptionResponse0.setCategory((MsoExceptionCategory) null);
      assertEquals("", tenantExceptionResponse0.getMessage());
  }

  @Test(timeout = 4000)
  public void test06()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse();
      String string0 = tenantExceptionResponse0.getMessage();
      assertNull(string0);
  }

  @Test(timeout = 4000)
  public void test07()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      String string0 = tenantExceptionResponse0.getMessage();
      assertEquals("", string0);
  }

  @Test(timeout = 4000)
  public void test08()  throws Throwable  {
      MsoExceptionCategory msoExceptionCategory0 = MsoExceptionCategory.INTERNAL;
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("", msoExceptionCategory0, false);
      Boolean boolean0 = tenantExceptionResponse0.getRolledBack();
      assertFalse(boolean0);
  }

  @Test(timeout = 4000)
  public void test09()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      tenantExceptionResponse0.setRolledBack((Boolean) null);
      assertNull(tenantExceptionResponse0.getCategory());
  }

  @Test(timeout = 4000)
  public void test10()  throws Throwable  {
      TenantExceptionResponse tenantExceptionResponse0 = new TenantExceptionResponse("");
      tenantExceptionResponse0.getCategory();
  }
}