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 ae1cdcf commit b74f3c8Copy full SHA for b74f3c8
utbot-junit-contest/src/main/kotlin/org/utbot/contest/Contest.kt
@@ -494,8 +494,6 @@ internal fun File.toUrl(): URL = toURI().toURL()
494
495
internal fun testMethodName(name: String, num: Int): String = "test${name.capitalize()}$num"
496
497
-// TODO usvm-sbft: does SBFT allow to generate tests for private methods and constructors
498
-// If no, add more filtering here
499
internal val Method.isVisibleFromGeneratedTest: Boolean
500
get() = (this.modifiers and Modifier.ABSTRACT) == 0
501
&& (this.modifiers and Modifier.NATIVE) == 0
0 commit comments