@@ -117,7 +117,7 @@ private long testRepeatedAroundAdviceInvocations(String file, int howmany, Strin
117
117
sw .stop ();
118
118
// System.out.println(sw.prettyPrint());
119
119
ac .close ();
120
- return sw .getLastTaskTimeMillis ();
120
+ return sw .getTotalTimeMillis ();
121
121
}
122
122
123
123
private long testBeforeAdviceWithoutJoinPoint (String file , int howmany , String technology ) {
@@ -139,7 +139,7 @@ private long testBeforeAdviceWithoutJoinPoint(String file, int howmany, String t
139
139
sw .stop ();
140
140
// System.out.println(sw.prettyPrint());
141
141
ac .close ();
142
- return sw .getLastTaskTimeMillis ();
142
+ return sw .getTotalTimeMillis ();
143
143
}
144
144
145
145
private long testAfterReturningAdviceWithoutJoinPoint (String file , int howmany , String technology ) {
@@ -162,7 +162,7 @@ private long testAfterReturningAdviceWithoutJoinPoint(String file, int howmany,
162
162
sw .stop ();
163
163
// System.out.println(sw.prettyPrint());
164
164
ac .close ();
165
- return sw .getLastTaskTimeMillis ();
165
+ return sw .getTotalTimeMillis ();
166
166
}
167
167
168
168
private long testMix (String file , int howmany , String technology ) {
@@ -191,7 +191,7 @@ private long testMix(String file, int howmany, String technology) {
191
191
sw .stop ();
192
192
// System.out.println(sw.prettyPrint());
193
193
ac .close ();
194
- return sw .getLastTaskTimeMillis ();
194
+ return sw .getTotalTimeMillis ();
195
195
}
196
196
197
197
}
0 commit comments