diff --git a/topics/tutorials/writing_tests_for_plugins/tests_prerequisites.md b/topics/tutorials/writing_tests_for_plugins/tests_prerequisites.md index a531ff7b2..c94fd49ae 100644 --- a/topics/tutorials/writing_tests_for_plugins/tests_prerequisites.md +++ b/topics/tutorials/writing_tests_for_plugins/tests_prerequisites.md @@ -1,7 +1,7 @@ - - # 1. Tests Prerequisites + + Setting up the test folders structure and mocking the project's SDK. @@ -17,14 +17,24 @@ This page discusses the steps to configure a plugin project for creating tests. Open the plugin project and create a separate folder named test under the src directory. Under test, create the java folder for test source code, and the folder testData for [test data files](test_project_and_testdata_directories.md) and reimport the Gradle project. -```text -└── src - ├── main - │ ├── java - │ └── resources - └── test - ├── java - └── testData +```plantuml +@startuml + +skinparam TitleFontName JetBrains Sans +skinparam TitleFontStyle plain +skinparam TitleFontSize 16 +skinparam DefaultTextAlignment left + +title + src + |_ main + |_ java + |_ resources + |_ test + |_ java + |_ testData +end title +@enduml ``` ## Set the Run Configuration Parameters