mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
So, there will be only one IDE Features Trainer plugin in the installed plugins page. IJ-CR-95996 GitOrigin-RevId: 15aad69f3ec75bb928dfa2a5d7ecaee5b5fb45be
14 lines
540 B
Kotlin
14 lines
540 B
Kotlin
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package training.git
|
|
|
|
import org.junit.runner.RunWith
|
|
import org.junit.runners.JUnit4
|
|
import training.lang.LangSupport
|
|
import training.simple.LessonsAndTipsIntegrationTest
|
|
|
|
@RunWith(JUnit4::class)
|
|
class GitLessonsAndTipsIntegrationTest : LessonsAndTipsIntegrationTest() {
|
|
override val languageId: String? = null
|
|
override val languageSupport: LangSupport? = null
|
|
override val learningCourse = GitLearningCourse()
|
|
} |