1
0
mirror of https://github.com/chylex/IntelliJ-AceJump.git synced 2025-06-15 23:39:53 +02:00
IntelliJ-AceJump/src/test/kotlin/AceTest.kt
2018-11-14 03:06:10 -05:00

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)
}
}