package com.intuit.tank.http.soap; import static org.junit.Assert.assertNotNull; import org.junit.Test; /** * The class <code>SOAPRequestTest</code> contains tests for the class <code>{@link SOAPRequest}</code>. * * @generatedBy CodePro at 12/16/14 4:29 PM */ public class SOAPRequestTest { /** * Run the SOAPRequest(Httpnull) constructor test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSOAPRequest_1() throws Exception { SOAPRequest result = new SOAPRequest(null, null); // An unexpected exception was thrown in user code while executing this test: // java.lang.ExceptionInInitializerError assertNotNull(result); } /** * Run the SOAPRequest(Httpnull) constructor test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSOAPRequest_2() throws Exception { SOAPRequest result = new SOAPRequest(null, null); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull assertNotNull(result); } /** * Run the SOAPRequest(Httpnull) constructor test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSOAPRequest_3() throws Exception { SOAPRequest result = new SOAPRequest(null, null); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull assertNotNull(result); } /** * Run the SOAPRequest(Httpnull) constructor test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSOAPRequest_4() throws Exception { SOAPRequest result = new SOAPRequest(null, null); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull assertNotNull(result); } /** * Run the SOAPRequest(Httpnull) constructor test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSOAPRequest_5() throws Exception { SOAPRequest result = new SOAPRequest(null, null); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull assertNotNull(result); } /** * Run the String getKey(String) method test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testGetKey_1() throws Exception { SOAPRequest fixture = new SOAPRequest(null, null); String key = ""; String result = fixture.getKey(key); } /** * Run the void setKey(String,String) method test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSetKey_1() throws Exception { SOAPRequest fixture = new SOAPRequest(null, null); String key = ""; String value = ""; fixture.setKey(key, value); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull } /** * Run the void setNamespace(String,String) method test. * * @throws Exception * * @generatedBy CodePro at 12/16/14 4:29 PM */ @Test public void testSetNamespace_1() throws Exception { SOAPRequest fixture = new SOAPRequest(null, null); String name = ""; String value = ""; fixture.setNamespace(name, value); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: Could not initialize class org.apache.commons.httpnull.Httpnull } }