fix: rename testData to testdata

This commit is contained in:
Bukowa 2025-01-28 18:57:38 +01:00
parent 5ab9b3da63
commit bb0807a61b
No known key found for this signature in database
GPG Key ID: FF3E7D973C59834A
4 changed files with 4 additions and 4 deletions

View File

@ -168,7 +168,7 @@ A generated IntelliJ Platform Plugin Template repository contains the following
│ │ └── resources/ Resources - plugin.xml, icons, messages │ │ └── resources/ Resources - plugin.xml, icons, messages
│ └── test │ └── test
│ ├── kotlin/ Kotlin test sources │ ├── kotlin/ Kotlin test sources
│ └── testData/ Test data used by tests │ └── testdata/ Test data used by tests
├── .gitignore Git ignoring rules ├── .gitignore Git ignoring rules
├── build.gradle.kts Gradle configuration ├── build.gradle.kts Gradle configuration
├── CHANGELOG.md Full change history ├── CHANGELOG.md Full change history
@ -255,7 +255,7 @@ The IntelliJ Platform Plugin Template project provides integration of two testin
Most of the IntelliJ Platform codebase tests are model-level, run in a headless environment using an actual IDE instance. Most of the IntelliJ Platform codebase tests are model-level, run in a headless environment using an actual IDE instance.
The tests usually test a feature as a whole rather than individual functions that comprise its implementation, like in unit tests. The tests usually test a feature as a whole rather than individual functions that comprise its implementation, like in unit tests.
In `src/test/kotlin`, you will find a basic `MyPluginTest` test that utilizes `BasePlatformTestCase` and runs a few checks against the XML files to indicate an example operation of creating files on the fly or reading them from `src/test/testData/rename` test resources. In `src/test/kotlin`, you will find a basic `MyPluginTest` test that utilizes `BasePlatformTestCase` and runs a few checks against the XML files to indicate an example operation of creating files on the fly or reading them from `src/test/testdata/rename` test resources.
> [!NOTE] > [!NOTE]
> Run your tests using predefined *Run Tests* configuration or by invoking the `./gradlew check` Gradle task. > Run your tests using predefined *Run Tests* configuration or by invoking the `./gradlew check` Gradle task.

View File

@ -8,7 +8,7 @@ import com.intellij.testFramework.fixtures.BasePlatformTestCase
import com.intellij.util.PsiErrorElementUtil import com.intellij.util.PsiErrorElementUtil
import org.jetbrains.plugins.template.services.MyProjectService import org.jetbrains.plugins.template.services.MyProjectService
@TestDataPath("\$CONTENT_ROOT/src/test/testData") @TestDataPath("\$CONTENT_ROOT/src/test/testdata")
class MyPluginTest : BasePlatformTestCase() { class MyPluginTest : BasePlatformTestCase() {
fun testXMLFile() { fun testXMLFile() {
@ -35,5 +35,5 @@ class MyPluginTest : BasePlatformTestCase() {
assertNotSame(projectService.getRandomNumber(), projectService.getRandomNumber()) assertNotSame(projectService.getRandomNumber(), projectService.getRandomNumber())
} }
override fun getTestDataPath() = "src/test/testData/rename" override fun getTestDataPath() = "src/test/testdata/rename"
} }