We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20da923 commit 86dcea2Copy full SHA for 86dcea2
utbot-framework/src/main/kotlin/org/utbot/framework/assemble/AssembleModelGenerator.kt
@@ -171,12 +171,6 @@ class AssembleModelGenerator(private val packageName: String) {
171
private fun assembleModel(utModel: UtModel): UtModel {
172
val collectedCallChain = callChain.toMutableList()
173
174
- // We cannot create an assemble model for a class located out of
175
- // the package that generator is instantiated for
176
- if (utModel.classId.packageName.startsWith(packageName)) {
177
- return utModel
178
- }
179
-
180
// We cannot create an assemble model for an anonymous class instance
181
if (utModel.classId.isAnonymous) {
182
return utModel
0 commit comments