Files
openide/plugins/git-features-trainer/testSrc/training/git/GitLessonsAndTipsIntegrationTest.kt
Konstantin Hudyakov 508df86697 [IFT] Merge Git Lessons plugin into main IFT plugin
So, there will be only one IDE Features Trainer plugin in the installed plugins page.

IJ-CR-95996

GitOrigin-RevId: 15aad69f3ec75bb928dfa2a5d7ecaee5b5fb45be
2022-09-28 14:54:21 +00:00

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