testing_plugins.md: cleanup

This commit is contained in:
Yann Cébron 2023-02-27 18:07:33 +01:00
parent f2906872cf
commit 9f21d6cc4b

View File

@ -1,7 +1,9 @@
[//]: # (title: Testing Overview) # Testing Overview
<!-- Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. --> <!-- Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<link-summary>Introduction to testing plugins.</link-summary>
Most of the tests in the IntelliJ Platform codebase are *model-level functional tests*. Most of the tests in the IntelliJ Platform codebase are *model-level functional tests*.
What this means is the following: What this means is the following:
@ -34,8 +36,8 @@ Please do not use <path>platform/testGuiFramework</path>, 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. > 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 > Also, code samples
> [comparing_string_references_inspection](https://github.com/JetBrains/intellij-sdk-docs/tree/main/code_samples/comparing_string_references_inspection) > [comparing_string_references_inspection](%gh-sdk-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. > and [conditional_operator_intention](%gh-sdk-samples%/conditional_operator_intention) demonstrate using tests.
> >
{style="note"} {style="note"}