File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
utbot-python/src/main/kotlin/org/utbot/python Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ class PythonTestCaseGenerator(
164
164
val typeInferenceCancellation =
165
165
{ isCancelled() || System .currentTimeMillis() >= until || missingLines?.size == 0 }
166
166
167
+ logger.info(" Start test generation for ${method.name} " )
167
168
substituteTypeParameters(method, typeStorage).forEach { newMethod ->
168
169
inferAnnotations(
169
170
newMethod,
@@ -226,7 +227,7 @@ class PythonTestCaseGenerator(
226
227
}
227
228
}
228
229
229
-
230
+ logger.info( " Collect all test executions for ${method.name} " )
230
231
val (successfulExecutions, failedExecutions) = executions.partition { it.result is UtExecutionSuccess }
231
232
232
233
return PythonTestSet (
@@ -301,4 +302,4 @@ class PythonTestCaseGenerator(
301
302
algo.run (hintCollector.result, isCancelled, annotationHandler)
302
303
}
303
304
}
304
- }
305
+ }
You can’t perform that action at this time.
0 commit comments