Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
a5f31505
Unverified
Commit
a5f31505
authored
7 years ago
by
Vladimir Krivosheev
Browse files
Options
Download
Email Patches
Plain Diff
UI DSL tests — fix file path to gear icon
parent
6cae4888
Branches unavailable
Tags unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
platform/platform-tests/testSrc/com/intellij/ui/laf/LafTest.kt
+1
-4
...orm/platform-tests/testSrc/com/intellij/ui/laf/LafTest.kt
platform/platform-tests/testSrc/com/intellij/ui/layout/UiDslTest.kt
+1
-2
...latform-tests/testSrc/com/intellij/ui/layout/UiDslTest.kt
with
2 additions
and
6 deletions
+2
-6
platform/platform-tests/testSrc/com/intellij/ui/laf/LafTest.kt
+
1
-
4
View file @
a5f31505
...
...
@@ -16,7 +16,6 @@ import com.intellij.ui.components.textFieldWithHistoryWithBrowseButton
import
com.intellij.ui.layout.*
import
org.junit.Assume.assumeTrue
import
org.junit.Before
import
org.junit.ClassRule
import
org.junit.Rule
import
org.junit.Test
import
org.junit.rules.TestName
...
...
@@ -36,9 +35,7 @@ class LafTest {
@Parameterized
.
Parameters
(
name
=
"{0}"
)
fun
lafNames
()
=
listOf
(
"Darcula"
,
"IntelliJ"
)
@JvmField
@ClassRule
val
uiRule
=
UiTestRule
(
Paths
.
get
(
PlatformTestUtil
.
getPlatformTestDataPath
(),
"ui"
,
"laf"
))
private
val
uiRule
=
UiTestRule
(
Paths
.
get
(
PlatformTestUtil
.
getPlatformTestDataPath
(),
"ui"
,
"laf"
))
}
@Suppress
(
"MemberVisibilityCanBePrivate"
)
...
...
This diff is collapsed.
Click to expand it.
platform/platform-tests/testSrc/com/intellij/ui/layout/UiDslTest.kt
+
1
-
2
View file @
a5f31505
...
...
@@ -30,8 +30,7 @@ class UiDslTest {
@Parameterized
.
Parameters
(
name
=
"{0}"
)
fun
lafNames
()
=
listOf
(
"Darcula"
,
"IntelliJ"
)
@JvmField
val
uiRule
=
UiTestRule
(
Paths
.
get
(
PlatformTestUtil
.
getPlatformTestDataPath
(),
"ui"
,
"layout"
))
private
val
uiRule
=
UiTestRule
(
Paths
.
get
(
PlatformTestUtil
.
getPlatformTestDataPath
(),
"ui"
,
"layout"
))
init
{
System
.
setProperty
(
"idea.ui.set.password.echo.char"
,
"true"
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help