Changeset 1896 for trunk/autoquest-plugin-uml-test/src/test/java
- Timestamp:
- 03/05/15 17:19:36 (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
r1835 r1896 162 162 } 163 163 164 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence" );164 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence", null); 165 165 } 166 166 … … 194 194 } 195 195 196 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence"); 196 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence", null); 197 } 198 199 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "testCreateInteractionFromEventSequence_2_result.uml"); 200 201 } 202 203 @Test 204 public void testHL7v2_1() throws Exception { 205 // parse log file 206 HTTPLogParser parser = 207 new HTTPLogParser(new File(ClassLoader 208 .getSystemResource("hl7_servicenamemap.txt") 209 .getFile())); 210 parser 211 .parseFile(new File(ClassLoader 212 .getSystemResource("testCreateInteractionFromEventSequence_1_usagedata.log") 213 .getFile())); 214 Collection<List<Event>> httpSequences = parser.getSequences(); 215 216 217 Model model = 218 ModelUtils.loadModel(ClassLoader 219 .getSystemResourceAsStream("hl7model_v2.uml")); 220 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 229 UMLUtils.createInteractionFromEventSequence(httpSequence, model, "testSequence", "RLUSTestSuite_1"); 197 230 } 198 231 … … 236 269 int[] lengths = new int[genSeqs.size()]; 237 270 for (List<Event> seq : genSeqs) { 238 UMLUtils.createInteractionFromEventSequence(seq, model, "seq_" + i );271 UMLUtils.createInteractionFromEventSequence(seq, model, "seq_" + i, null); 239 272 lengths[i - 1] = seq.size(); 240 273 i++; … … 257 290 IStochasticProcess usageProfile = (IStochasticProcess) SerializationUtils.deserialize(ClassLoader.getSystemResourceAsStream("testCreateScheduling_1_usageprofile.dat")); 258 291 259 UMLUtils.createScheduling(model, usageProfile );292 UMLUtils.createScheduling(model, usageProfile, null); 260 293 261 294 ModelUtils.writeModelToFile(model, OUTPUT_DIR + "testCreateScheduling_1_result.uml");
Note: See TracChangeset
for help on using the changeset viewer.