File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed
utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/util
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -32,16 +32,6 @@ fun checkFrameworkDependencies(dependencyPaths: String?) {
32
32
.toSet()
33
33
34
34
val testFrameworkPatterns = TestFramework .allItems.map { it.patterns() }
35
- val testFrameworkFound = dependencyNames.matchesAnyOf(testFrameworkPatterns) ||
36
- dependencyPathsSequence.any { checkDependencyIsFatJar(it) }
37
-
38
- if (! testFrameworkFound) {
39
- error("""
40
- Test frameworks are not found in dependency path $dependencyPaths , dependency names are:
41
- ${dependencyNames.joinToString(System .lineSeparator())}
42
- """
43
- )
44
- }
45
35
46
36
val mockFrameworkPatterns = MockFramework .allItems.map { it.patterns() }
47
37
val mockFrameworkFound = dependencyNames.matchesAnyOf(mockFrameworkPatterns) ||
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ object UtTestsDialogProcessor {
142
142
val testCaseGenerator = TestCaseGenerator (
143
143
Paths .get(buildDir),
144
144
classpath,
145
- classpath ,
145
+ pluginJarsPath.joinToString(separator = File .pathSeparator) ,
146
146
isCanceled = { indicator.isCanceled }
147
147
)
148
148
You can’t perform that action at this time.
0 commit comments