intellij-sdk-code-samples/writing_tests_for_plugins.md
2015-03-24 11:45:04 +01:00

28 lines
834 B
Markdown

---
title: Writing Tests For Plugins
---
<!--
INITIAL_SOURCE https://confluence.jetbrains.com/display/IntelliJIDEA/Writing+Tests+for+Plugins
-->
# {{ page.title }}
In this tutorial you will learn how to write and run automated tests for your plugin.
As an example we will take the plugin implemented in the
[Custom Language Support](cls_tutorial.html)
and cover its code with functional tests.
* [Tests Prerequisites](tests_prerequisites.html)
* [Parsing Test](parsing_test.html))
* [Completion Test](completion_test.html)
* [Annotator Test](annotator_test.html)
* [Formatter Test](formatter_test.html)
* [Rename Test](rename_test.html)
* [Folding Test](TODO)
* [Find Usages Test](TODO)
* [Commenter Test](TODO)
* [Reference Test](TODO)
The final code can be found on [GitHub](http://github.com/cheptsov/SimplePlugin).