mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-06-15 23:39:53 +02:00
12 lines
271 B
Kotlin
12 lines
271 B
Kotlin
import com.intellij.testFramework.EditorActionTestCase
|
|
|
|
/**
|
|
* @see com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase
|
|
*/
|
|
class AceTest : EditorActionTestCase() {
|
|
override fun getActionId() = "AceAction"
|
|
|
|
fun testSomething() {
|
|
assert(true)
|
|
}
|
|
} |