File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/js Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,19 @@ import com.intellij.lang.javascript.refactoring.util.JSMemberInfo
5
5
import com.intellij.openapi.module.Module
6
6
import com.intellij.openapi.project.Project
7
7
import com.intellij.openapi.vfs.VirtualFile
8
+ import com.intellij.testIntegration.TestFramework
9
+ import org.utbot.intellij.plugin.ui.utils.BaseTestsModel
8
10
9
- data class JsTestsModel (
10
- val project : Project ,
11
- val srcModule : Module ,
12
- val testModule : Module ,
11
+ class JsTestsModel (
12
+ project : Project ,
13
+ srcModule : Module ,
14
+ testModule : Module ,
13
15
val fileMethods : Set <JSMemberInfo >? ,
14
16
val focusedMethod : Set <JSFunction >? ,
17
+ ) : BaseTestsModel(
18
+ project,
19
+ srcModule,
20
+ testModule
15
21
) {
16
- var testSourceRoot: VirtualFile ? = null
17
- // TODO testPackageName
18
- // TODO testFramework
22
+ lateinit var testFramework: TestFramework
19
23
}
You can’t perform that action at this time.
0 commit comments