[python] Add KDoc about the classpath for tests

GitOrigin-RevId: e14152ebd88b2fe4496904af728846649c88f32f
This commit is contained in:
Mikhail Mazurkevich
2023-11-06 19:08:48 +04:00
committed by intellij-monorepo-bot
parent 1d7d5ea754
commit ef612f90f5
3 changed files with 7 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import training.featuresSuggester.IntroduceVariableSuggesterTest
/**
* Note: when user is declaring variable and it's name starts with any language keyword suggestion will not be thrown
* Use `intellij.python.tests` module as a classpath to run this test locally
*/
class IntroduceVariableSuggesterPythonTest : IntroduceVariableSuggesterTest() {
override val testingCodeFileName = "PythonCodeExample.py"

View File

@@ -9,6 +9,9 @@ import training.featuresSuggester.FeatureSuggesterTestUtils.testInvokeLater
import training.featuresSuggester.FeatureSuggesterTestUtils.typeAndCommit
import training.featuresSuggester.NoSuggestion
/**
* Use `intellij.python.tests` module as a classpath to run this test locally
*/
class LineCommentingSuggesterPythonTest : FeatureSuggesterTest() {
override val testingCodeFileName = "PythonCodeExample.py"
override val testingSuggesterId = "Comment with line comment"

View File

@@ -11,6 +11,9 @@ import training.featuresSuggester.FeatureSuggesterTestUtils.typeDelete
import training.featuresSuggester.NoSuggestion
import training.featuresSuggester.ReplaceCompletionSuggesterTest
/**
* Use `intellij.python.tests` module as a classpath to run this test locally
*/
class ReplaceCompletionSuggesterPythonTest : ReplaceCompletionSuggesterTest() {
override val testingCodeFileName = "PythonCodeExample.py"