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() {}