From 9f21d6cc4b6fbee802ca3fc435acb4fd9b9d84b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 27 Feb 2023 18:07:33 +0100 Subject: [PATCH] testing_plugins.md: cleanup --- topics/basics/testing_plugins/testing_plugins.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/topics/basics/testing_plugins/testing_plugins.md b/topics/basics/testing_plugins/testing_plugins.md index d8aece736..83e2c904e 100644 --- a/topics/basics/testing_plugins/testing_plugins.md +++ b/topics/basics/testing_plugins/testing_plugins.md @@ -1,7 +1,9 @@ -[//]: # (title: Testing Overview) +# Testing Overview +Introduction to testing plugins. + Most of the tests in the IntelliJ Platform codebase are *model-level functional tests*. What this means is the following: @@ -34,8 +36,8 @@ Please do not use platform/testGuiFramework, as it is reserved for > Check out [this step-by-step tutorial](writing_tests_for_plugins.md) teaching how to write and run automated tests for your custom language plugin. > Also, code samples -> [comparing_string_references_inspection](https://github.com/JetBrains/intellij-sdk-docs/tree/main/code_samples/comparing_string_references_inspection) -> and [conditional_operator_intention](https://github.com/JetBrains/intellij-sdk-docs/tree/main/code_samples/conditional_operator_intention) demonstrate using tests. +> [comparing_string_references_inspection](%gh-sdk-samples%/comparing_string_references_inspection) +> and [conditional_operator_intention](%gh-sdk-samples%/conditional_operator_intention) demonstrate using tests. > {style="note"}