- Timestamp:
- 03/18/15 09:59:05 (10 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/SOAPUtilsTest.java
r1922 r1925 26 26 import de.ugoe.cs.autoquest.eventcore.Event; 27 27 import de.ugoe.cs.autoquest.plugin.http.HTTPLogParser; 28 import de.ugoe.cs.autoquest.plugin.http. HTTPUtils;28 import de.ugoe.cs.autoquest.plugin.http.SOAPUtils; 29 29 import de.ugoe.cs.autoquest.plugin.http.eventcore.SOAPEventType; 30 30 import de.ugoe.cs.autoquest.plugin.http.eventcore.SimpleSOAPEventType; … … 32 32 /** 33 33 * <p> 34 * Tests for the HTTPUtils34 * Tests for the SOAPUtils 35 35 * </p> 36 36 * 37 37 * @author Steffen Herbold 38 38 */ 39 public class HTTPUtilsTest {39 public class SOAPUtilsTest { 40 40 41 41 @Test … … 53 53 List<Event> sequence = events.iterator().next(); 54 54 55 List<Event> newSequence = HTTPUtils.convertToSimpleSOAPEvent(sequence, false);55 List<Event> newSequence = SOAPUtils.convertToSimpleSOAPEvent(sequence, false); 56 56 57 57 assertNotNull(newSequence); … … 71 71 assertEquals(oldEventType.getCalledMethod(), newEventType.getCalledMethod()); 72 72 assertEquals(oldEventType.getServiceName(), newEventType.getServiceName()); 73 assertEquals(oldEventType.getClientName(), newEventType.getClientName()); 73 74 assertNull(newEvent.getTarget()); 74 75 } else {
Note: See TracChangeset
for help on using the changeset viewer.