Back to Intellij Community

ConvertJavadoc

plugins/testng/resources/inspectionDescriptions/ConvertJavadoc.html

2025.3-rc-2248 B
Original Source

Asserts your TestNG tests with Javadoc annotations and converts them to JDK annotations.

Example:

/**
    * @testng.before-test
  */
  public void sample() {}

After the quick-fix is applied:

@BeforeTest
  public void sample() {}