Echtzeitsysteme / java-refactoring-ttc

Object-oriented Refactoring of Java Programs using Graph Transformation (TTC'2015)
0 stars 0 forks source link

ARTE: What's included in the printed execution times? #36

Closed tsdh closed 9 years ago

tsdh commented 9 years ago

When running solutions in ARTE, messages like

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SUCCESS: Test case "hidden_csc3_1" has been executed SUCCESSFULLY.
The solution needed 0.015 seconds for execution. 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

are printed. What's included in this execution time? The sum of every TestInterface method execution time, only the execution time of the apply*() methods, or createProgramGraph() + apply*() + synchronizeChanges()?

SvenPeldszus commented 9 years ago

The execution time includes only createProgramGraph() + apply*() + synchronizeChanges().

tsdh commented 9 years ago

Ok, that makes sense.