Examples of CucumberStepInspection


Examples of org.jetbrains.plugins.cucumber.inspections.CucumberStepInspection

    doTest();
  }

  protected void doTest() {
    CucumberStepsIndex.getInstance(getProject()).reset();
    myFixture.enableInspections(new CucumberStepInspection());
    myFixture.copyDirectoryToProject(getTestName(true), "");
    myFixture.configureByFile(getTestName(true) + "/test.feature");
    myFixture.testHighlighting(true, true, true);
  }
View Full Code Here

Examples of org.jetbrains.plugins.cucumber.inspections.CucumberStepInspection

    doTest(true);
  }

  private void doTest(boolean createAll) {
    CucumberStepsIndex.getInstance(getProject()).reset();
    myFixture.enableInspections(new CucumberStepInspection());
    myFixture.copyDirectoryToProject("createStep", "");
    myFixture.configureByFile("createStep/" + getTestName(true) + ".feature");

    myFixture.checkHighlighting(true, false, false);
View Full Code Here
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.