Skip to content

Commit 7b561b0

Browse files
committed
Create BaseTestsModel.kt
1 parent b9e50f9 commit 7b561b0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.utbot.intellij.plugin.ui.utils
2+
3+
import com.intellij.openapi.module.Module
4+
import com.intellij.openapi.project.Project
5+
import com.intellij.openapi.vfs.VirtualFile
6+
7+
open class BaseTestsModel(
8+
val project: Project,
9+
val srcModule: Module,
10+
val testModule: Module,
11+
) {
12+
var testSourceRoot: VirtualFile? = null
13+
}

0 commit comments

Comments
 (0)