Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.51 KB

File metadata and controls

32 lines (25 loc) · 1.51 KB
title
10. Reference Test

This test checks if references functionality, implemented in the Reference Contributor section of the Custom Language Support Tutorial, works as expected.

10.1. Define Test Data

This test reuses the Simple Language properties file DefaultTestData.simple.

Create the test file ReferenceTestData.java in the testData directory. This file has one Simple Language prefix and key, with the caret placed after the key.

{% include /code_samples/simple_language_plugin/src/test/testData/ReferenceTestData.java %}

10.2. Define a Test Method

Add the testReference() method to the SimpleCodeInsightTest class previously defined. This test is configured by the test files. The fixture gets the PsiElement at the caret, then compares its value with the known value of that key.

  public void testReference() {
    myFixture.configureByFiles("ReferenceTestData.java", "DefaultTestData.simple");
    PsiElement element = myFixture.getFile().findElementAt(myFixture.getCaretOffset()).getParent();
    assertEquals("https://en.wikipedia.org/", ((SimpleProperty) element.getReferences()[0].resolve()).getValue());
  }

10.3. Run the Test

Run the test and make sure it's green.