diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index da3ea671a3..03675aebaa 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -164,6 +164,7 @@ class PythonTestCaseGenerator( val typeInferenceCancellation = { isCancelled() || System.currentTimeMillis() >= until || missingLines?.size == 0 } + logger.info("Start test generation for ${method.name}") substituteTypeParameters(method, typeStorage).forEach { newMethod -> inferAnnotations( newMethod, @@ -226,7 +227,7 @@ class PythonTestCaseGenerator( } } - + logger.info("Collect all test executions for ${method.name}") val (successfulExecutions, failedExecutions) = executions.partition { it.result is UtExecutionSuccess } return PythonTestSet( @@ -301,4 +302,4 @@ class PythonTestCaseGenerator( algo.run(hintCollector.result, isCancelled, annotationHandler) } } -} \ No newline at end of file +}