summaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/openstack/exceptions/MsoExceptionESTest.java
blob: 2bd71fb5253966026595a3043db93bacebcf09d9 (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
/*
 * This file was automatically generated by EvoSuite
 * Mon Nov 14 08:48:01 GMT 2016
 */

package org.openecomp.mso.openstack.exceptions;

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

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 MsoExceptionESTest extends MsoExceptionESTestscaffolding {

  @Test(timeout = 4000)
  public void test0()  throws Throwable  {
      MsoTenantNotFound msoTenantNotFound0 = new MsoTenantNotFound("T&~q", "Cloud Site [");
      MsoIOException msoIOException0 = new MsoIOException("", (Throwable) msoTenantNotFound0);
      String string0 = msoIOException0.getContextMessage();
      assertEquals("", string0);
  }

  @Test(timeout = 4000)
  public void test1()  throws Throwable  {
      MsoNetworkNotFound msoNetworkNotFound0 = new MsoNetworkNotFound("", "", "");
      msoNetworkNotFound0.addContext("");
      String string0 = msoNetworkNotFound0.getContext();
      assertEquals("", string0);
      assertNotNull(string0);
  }

  @Test(timeout = 4000)
  public void test2()  throws Throwable  {
      MsoAdapterException msoAdapterException0 = new MsoAdapterException(" ");
      msoAdapterException0.setContext(" ");
      String string0 = msoAdapterException0.getContextMessage();
      assertEquals("[ ]  ", string0);
  }

  @Test(timeout = 4000)
  public void test3()  throws Throwable  {
      MsoCloudSiteNotFound msoCloudSiteNotFound0 = new MsoCloudSiteNotFound();
      MsoAdapterException msoAdapterException0 = new MsoAdapterException("", (Throwable) msoCloudSiteNotFound0);
      msoAdapterException0.addContext("");
      msoAdapterException0.addContext("");
      String string0 = msoAdapterException0.getContext();
      assertEquals(":", msoAdapterException0.getContext());
      assertNotNull(string0);
  }

  @Test(timeout = 4000)
  public void test4()  throws Throwable  {
      MsoCloudSiteNotFound msoCloudSiteNotFound0 = new MsoCloudSiteNotFound((String) null);
      MsoExceptionCategory msoExceptionCategory0 = msoCloudSiteNotFound0.getCategory();
      MsoAdapterException msoAdapterException0 = new MsoAdapterException((String) null, (Throwable) msoCloudSiteNotFound0);
      msoAdapterException0.setCategory(msoExceptionCategory0);
      assertNull(msoAdapterException0.getContext());
  }

  @Test(timeout = 4000)
  public void test5()  throws Throwable  {
      MsoNetworkNotFound msoNetworkNotFound0 = new MsoNetworkNotFound("", "", "");
      String string0 = msoNetworkNotFound0.getContext();
      assertNull(string0);
  }

  @Test(timeout = 4000)
  public void test6()  throws Throwable  {
      MsoCloudSiteNotFound msoCloudSiteNotFound0 = new MsoCloudSiteNotFound((String) null);
      MsoAdapterException msoAdapterException0 = new MsoAdapterException((String) null, (Throwable) msoCloudSiteNotFound0);
      String string0 = msoAdapterException0.getContextMessage();
      assertNull(string0);
  }
}