Skip to content

Commit 59ac644

Browse files
minor
1 parent d723901 commit 59ac644

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

utbot-framework/src/main/kotlin/org/utbot/framework/plugin/api/TestCaseGenerator.kt

-12
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,6 @@ open class TestCaseGenerator(
8585
System.setProperty(kotlinx.coroutines.DEBUG_PROPERTY_NAME, kotlinx.coroutines.DEBUG_PROPERTY_VALUE_OFF)
8686
}
8787
timeoutLogger.trace().bracket("Soot initialization") {
88-
// val jarsPaths = classpath!!.split(":").filter { it.endsWith(".jar") }
89-
// for (jarPath in jarsPaths) {
90-
// val jarFile = JarFile(jarPath)
91-
// for (jarEntry in jarFile.entries()) {
92-
// if (jarEntry.name.endsWith(".class")) {
93-
// val className = jarEntry.name.removeSuffix(".class").replace('/', '.')
94-
// SootUtils.libraryClassesToLoad.add(className)
95-
// }
96-
// }
97-
// }
9888
SootUtils.runSoot(buildDirs, classpath, forceSootReload, jdkInfo)
9989
}
10090

@@ -168,8 +158,6 @@ open class TestCaseGenerator(
168158
for ((method, controller) in method2controller) {
169159
controller.job = launch(currentUtContext) {
170160
if (!isActive) return@launch
171-
//TODO remove
172-
//if (!method.name.contains("testFunc3")) return@launch
173161

174162
try {
175163
//yield one to

0 commit comments

Comments
 (0)