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 d8db6ff commit cc7edf4Copy full SHA for cc7edf4
utbot-framework/src/main/kotlin/org/utbot/framework/assemble/AssembleModelGenerator.kt
@@ -368,7 +368,7 @@ class AssembleModelGenerator(private val methodUnderTest: UtMethod<*>) {
368
}
369
370
private val ClassId.isVisible : Boolean
371
- get() = this.isPublic || !this.isPrivate && this.packageName.startsWith(methodPackageName)
+ get() = this.isPublic || !this.isPrivate && this.packageName.startsWith(methodPackageName)
372
373
private val Constructor<*>.isVisible : Boolean
374
get() = this.isPublic || !this.isPrivate && this.declaringClass.packageName.startsWith(methodPackageName)
0 commit comments