Package org.jetbrains.plugins.cucumber

Examples of org.jetbrains.plugins.cucumber.BDDFrameworkType


      if ((ep instanceof OptionalStepDefinitionExtensionPoint) &&
          !((OptionalStepDefinitionExtensionPoint)ep).participateInStepDefinitionCreation(featureFile)) {
        continue;
      }
      final Collection<? extends PsiFile> psiFiles = ep.getStepDefinitionContainers(featureFile);
      final BDDFrameworkType frameworkType = ep.getStepFileType();
      for (final PsiFile psiFile : psiFiles) {
        result.add(Pair.create(psiFile, frameworkType));
      }
    }
    return result;
View Full Code Here


  }

  @NotNull
  @Override
  public BDDFrameworkType getStepFileType() {
    return new BDDFrameworkType(JavaFileType.INSTANCE);
  }
View Full Code Here

  }

  @NotNull
  @Override
  public BDDFrameworkType getStepFileType() {
    return new BDDFrameworkType(GroovyFileType.GROOVY_FILE_TYPE);
  }
View Full Code Here

TOP

Related Classes of org.jetbrains.plugins.cucumber.BDDFrameworkType

Copyright © 2018 www.massapicom. 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.