5. Formatter Test
See also FormatterTestCase
as convenient base class.
Define Test Data
Create the FormatterTestData.simple file in the testData directory.
Define a Test Method
Add the testFormatter()
method to the SimpleCodeInsightTest
class previously defined.
Again, this method configures the test fixture by using the test file.
The code style Simple Language settings for spaces and blank lines are set.
The file is then formatted according to the settings.
The formatted file is compared to the expected results in the benchmark file DefaultTestData.simple.
Run the Test
Run the test and make sure it's successful.
Running tests
Open the Gradle Tool Window.
Select the simple_language_plugin node. You may need to reimport it as a Gradle project.
Drill down under simple_language_plugin to Tasks, verification, test task.
Run the test task.
The results are displayed in the Run Tool Window, and also written to the simple_language_plugin/build/test-results/test directory.
If the Run Tool Window displays the error Test events were not received, do the following:
In the Gradle Tool Window, drill down under simple_language_plugin to Tasks, build, clean task.
Run the clean task, which deletes the simple_language_plugin/build directory.
Restart the test.