aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSORESTClient/src/test/java/org/openecomp/mso/rest/HttpHeaderESTest.java
blob: f0aeee0f999d1a24acd646ddf9cbfad062930465 (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
98
99
/*
 * This file was automatically generated by EvoSuite
 * Mon Nov 14 11:47:07 GMT 2016
 */

/*- 
 * ============LICENSE_START======================================================= 
 * OPENECOMP - MSO 
 * ================================================================================ 
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. 
 * ================================================================================ 
 * Licensed under the Apache License, Version 2.0 (the "License"); 
 * you may not use this file except in compliance with the License. 
 * You may obtain a copy of the License at 
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0 
 * 
 * Unless required by applicable law or agreed to in writing, software 
 * distributed under the License is distributed on an "AS IS" BASIS, 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
 * See the License for the specific language governing permissions and 
 * limitations under the License. 
 * ============LICENSE_END========================================================= 
 */ 

package org.openecomp.mso.rest;

import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;

import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.evosuite.runtime.PrivateAccess;
import org.junit.runner.RunWith;

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

  @Test(timeout = 4000)
  public void test0()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("Fw", "WD#>QF/v6_|_A");
      String string0 = httpHeader0.getValue();
      assertEquals("WD#>QF/v6_|_A", string0);
      assertEquals("Fw", httpHeader0.getName());
  }

  @Test(timeout = 4000)
  public void test1()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("", "");
      String string0 = httpHeader0.getValue();
      assertEquals("", string0);
  }

  @Test(timeout = 4000)
  public void test2()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("Nae may no be null.", "Nae may no be null.");
      PrivateAccess.setVariable((Class<HttpHeader>) HttpHeader.class, httpHeader0, "name", (Object) null);
      String string0 = httpHeader0.getName();
      assertNull(string0);
  }

  @Test(timeout = 4000)
  public void test3()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("", "EIqJp");
      String string0 = httpHeader0.getName();
      assertEquals("EIqJp", httpHeader0.getValue());
      assertEquals("", string0);
  }

  @Test(timeout = 4000)
  public void test4()  throws Throwable  {
      HttpHeader httpHeader0 = null;
      try {
        httpHeader0 = new HttpHeader((String) null, (String) null);
        fail("Expecting exception: IllegalArgumentException");
      
      } catch(IllegalArgumentException e) {
         //
         // Name may not be null.
         //
         verifyException("org.openecomp.mso.rest.HttpHeader", e);
      }
  }

  @Test(timeout = 4000)
  public void test5()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("Nae may no be null.", "Nae may no be null.");
      String string0 = httpHeader0.getName();
      assertEquals("Nae may no be null.", string0);
  }

  @Test(timeout = 4000)
  public void test6()  throws Throwable  {
      HttpHeader httpHeader0 = new HttpHeader("|SJ`pSz:BCB1o8~", (String) null);
      String string0 = httpHeader0.getValue();
      assertNull(string0);
  }
}