Changeset 1925


Ignore:
Timestamp:
03/18/15 09:59:05 (9 years ago)
Author:
sherbold
Message:
  • updated tests
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/SOAPUtilsTest.java

    r1922 r1925  
    2626import de.ugoe.cs.autoquest.eventcore.Event; 
    2727import de.ugoe.cs.autoquest.plugin.http.HTTPLogParser; 
    28 import de.ugoe.cs.autoquest.plugin.http.HTTPUtils; 
     28import de.ugoe.cs.autoquest.plugin.http.SOAPUtils; 
    2929import de.ugoe.cs.autoquest.plugin.http.eventcore.SOAPEventType; 
    3030import de.ugoe.cs.autoquest.plugin.http.eventcore.SimpleSOAPEventType; 
     
    3232/** 
    3333 * <p> 
    34  * Tests for the HTTPUtils 
     34 * Tests for the SOAPUtils 
    3535 * </p> 
    3636 *  
    3737 * @author Steffen Herbold 
    3838 */ 
    39 public class HTTPUtilsTest { 
     39public class SOAPUtilsTest { 
    4040     
    4141    @Test 
     
    5353            List<Event> sequence = events.iterator().next(); 
    5454             
    55             List<Event> newSequence = HTTPUtils.convertToSimpleSOAPEvent(sequence, false); 
     55            List<Event> newSequence = SOAPUtils.convertToSimpleSOAPEvent(sequence, false); 
    5656             
    5757            assertNotNull(newSequence); 
     
    7171                    assertEquals(oldEventType.getCalledMethod(), newEventType.getCalledMethod()); 
    7272                    assertEquals(oldEventType.getServiceName(), newEventType.getServiceName()); 
     73                    assertEquals(oldEventType.getClientName(), newEventType.getClientName()); 
    7374                    assertNull(newEvent.getTarget()); 
    7475                } else { 
Note: See TracChangeset for help on using the changeset viewer.