Changeset 1917 for trunk/autoquest-plugin-uml-test/src/test/java/de/ugoe
- Timestamp:
- 03/12/15 15:25:50 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-uml-test/src/test/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtilsTest.java
r1914 r1917 220 220 Collection<List<Event>> simpleSOAPSequences = new LinkedList<>(); 221 221 for (List<Event> httpSequence : httpSequences) { 222 for (Iterator<Event> eventIter = httpSequence.iterator(); eventIter.hasNext();) { 223 Event event = eventIter.next(); 224 if (!(event.getType() instanceof SOAPEventType)) { 225 eventIter.remove(); 226 } 227 } 228 simpleSOAPSequences.add(HTTPUtils.convertToSimpleSOAPEvent(httpSequence)); 229 // simpleSOAPSequences.add(httpSequence); 222 simpleSOAPSequences.add(HTTPUtils.convertToSimpleSOAPEvent(httpSequence, true)); 230 223 } 231 224
Note: See TracChangeset
for help on using the changeset viewer.