Skip to content

Commit 62c76c6

Browse files
committed
Remove unnecessary file for class Patterns
1 parent 286e54c commit 62c76c6

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

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

Lines changed: 0 additions & 6 deletions
This file was deleted.

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/util/DependencyPatterns.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ import org.utbot.framework.codegen.Junit5
55
import org.utbot.framework.codegen.TestFramework
66
import org.utbot.framework.codegen.TestNg
77
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+
)
913

1014
fun TestFramework.patterns(): Patterns {
1115
val moduleLibraryPatterns = when (this) {

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/util/DependencyUtils.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package org.utbot.framework.codegen.model.util
22

3-
import org.utbot.framework.codegen.TestFramework
43
import org.utbot.framework.concrete.UtExecutionInstrumentation
54
import org.utbot.framework.plugin.api.MockFramework
65
import java.io.File
76
import java.util.jar.JarFile
87
import mu.KotlinLogging
9-
import org.utbot.framework.plugin.api.util.Patterns
108

119
private val logger = KotlinLogging.logger {}
1210

utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/LibraryMatcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import org.utbot.framework.plugin.api.MockFramework
66
import com.intellij.openapi.module.Module
77
import com.intellij.openapi.project.Project
88
import com.intellij.openapi.roots.LibraryOrderEntry
9-
import org.utbot.framework.plugin.api.util.Patterns
9+
import org.utbot.framework.codegen.model.util.Patterns
1010

1111
fun findFrameworkLibrary(
1212
project: Project,

0 commit comments

Comments
 (0)