Package de.plushnikov.lombok

Source Code of de.plushnikov.lombok.InspectionTest

package de.plushnikov.lombok;

import com.intellij.testFramework.InspectionTestCase;
import de.plushnikov.intellij.plugin.inspection.LombokInspection;

/**
* @author Plushnikov Michail
*/
public class InspectionTest extends InspectionTestCase {

  @Override
  protected String getTestDataPath() {
    return "./lombok-plugin/src/test/data/inspection";
  }

  private void doTest() throws Exception {
    doTest(getTestName(true), new LombokInspection());
  }

  public void testIssue37() throws Exception {
    doTest();
  }
}
TOP

Related Classes of de.plushnikov.lombok.InspectionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.