aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCServiceResponseESTest.java
blob: fc05ed5b6cfff45a8cd4d9aeaba26caec79213e9 (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
/*
 * This file was automatically generated by EvoSuite
 * Mon Feb 20 14:07:08 GMT 2017
 */

package org.openecomp.mso.adapters.sdncrest;

import org.junit.Test;
import static org.junit.Assert.*;
import java.util.HashMap;
import java.util.Map;
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 SDNCServiceResponseESTest extends SDNCServiceResponseESTestscaffolding {

  @Test(timeout = 4000)
  public void test0()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse();
      sDNCServiceResponse0.addParam((String) null, "");
      assertNull(sDNCServiceResponse0.getResponseMessage());
  }

  @Test(timeout = 4000)
  public void test1()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse();
      sDNCServiceResponse0.addParam("", "");
      Map<String, String> map0 = sDNCServiceResponse0.getParams();
      assertEquals(1, map0.size());
  }

  @Test(timeout = 4000)
  public void test2()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse();
      sDNCServiceResponse0.addParam("", "");
      sDNCServiceResponse0.addParam("DYNAMIC", "DYNAMIC");
      assertNull(sDNCServiceResponse0.getResponseMessage());
  }

  @Test(timeout = 4000)
  public void test3()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse();
      HashMap<String, String> hashMap0 = new HashMap<String, String>();
      sDNCServiceResponse0.setParams(hashMap0);
      Map<String, String> map0 = sDNCServiceResponse0.getParams();
      assertEquals(0, map0.size());
  }

  @Test(timeout = 4000)
  public void test4()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse("", "", "", "");
      assertEquals("", sDNCServiceResponse0.getResponseCode());
  }

  @Test(timeout = 4000)
  public void test5()  throws Throwable  {
      SDNCServiceResponse sDNCServiceResponse0 = new SDNCServiceResponse();
      Map<String, String> map0 = sDNCServiceResponse0.getParams();
      assertNull(map0);
  }
}