File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed
utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/util
utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/util
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ import org.utbot.framework.codegen.Junit5
5
5
import org.utbot.framework.codegen.TestFramework
6
6
import org.utbot.framework.codegen.TestNg
7
7
import org.utbot.framework.plugin.api.MockFramework
8
- import org.utbot.framework.plugin.api.util.Patterns
8
+
9
+ data class Patterns (
10
+ val moduleLibraryPatterns : List <Regex >,
11
+ val libraryPatterns : List <Regex >,
12
+ )
9
13
10
14
fun TestFramework.patterns (): Patterns {
11
15
val moduleLibraryPatterns = when (this ) {
Original file line number Diff line number Diff line change 1
1
package org.utbot.framework.codegen.model.util
2
2
3
- import org.utbot.framework.codegen.TestFramework
4
3
import org.utbot.framework.concrete.UtExecutionInstrumentation
5
4
import org.utbot.framework.plugin.api.MockFramework
6
5
import java.io.File
7
6
import java.util.jar.JarFile
8
7
import mu.KotlinLogging
9
- import org.utbot.framework.plugin.api.util.Patterns
10
8
11
9
private val logger = KotlinLogging .logger {}
12
10
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import org.utbot.framework.plugin.api.MockFramework
6
6
import com.intellij.openapi.module.Module
7
7
import com.intellij.openapi.project.Project
8
8
import com.intellij.openapi.roots.LibraryOrderEntry
9
- import org.utbot.framework.plugin.api .util.Patterns
9
+ import org.utbot.framework.codegen.model .util.Patterns
10
10
11
11
fun findFrameworkLibrary (
12
12
project : Project ,
You can’t perform that action at this time.
0 commit comments