You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/dependencies/ModuleDependencyProvider.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/dependencies/providers/JavaModuleDependencyProvider.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/dependencies/providers/PythonModuleDependencyProvider.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/dependencies/DidChangeDependencyPathsParams.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/shared/jetbrains-community/tst/software/aws/toolkits/jetbrains/services/amazonq/lsp/dependencies/DefaultModuleDependenciesServiceTest.kt
+10-42Lines changed: 10 additions & 42 deletions
Original file line number
Diff line number
Diff line change
@@ -91,15 +91,13 @@ class DefaultModuleDependenciesServiceTest {
91
91
val module = mockk<Module>()
92
92
val params =DidChangeDependencyPathsParams(
93
93
moduleName ="testModule",
94
-
programmingLanguage ="Java",
95
-
files =listOf("src/main"),
96
-
dirs =listOf("lib"),
94
+
programmingLanguage ="java",
95
+
paths =listOf("/path/to/dependency.jar"),
97
96
includePatterns = emptyList(),
98
97
excludePatterns = emptyList()
99
98
)
100
99
101
100
every { mockModuleManager.modules } returns arrayOf(module)
0 commit comments