Tabnine Logo
CoverageSuite
Code IndexAdd Tabnine to your IDE (free)

How to use
CoverageSuite
in
com.intellij.coverage

Best Java code snippets using com.intellij.coverage.CoverageSuite (Showing top 3 results out of 315)

origin: go-lang-plugin-org/go-lang-idea-plugin

 return null;
Project project = baseCoverageSuite.getProject();
if (project == null) {
 return null;
origin: go-lang-plugin-org/go-lang-idea-plugin

@Nullable
@Override
protected Runnable createRenewRequest(@NotNull CoverageSuitesBundle bundle, @NotNull CoverageDataManager manager) {
 GoCoverageProjectData data = new GoCoverageProjectData();
 for (CoverageSuite suite : bundle.getSuites()) {
  ProjectData toMerge = suite.getCoverageData(manager);
  if (toMerge != null) {
   data.merge(toMerge);
  }
 }
 return () -> {
  annotateAllFiles(data, manager.doInReadActionIfProjectOpen(() -> ProjectRootManager.getInstance(getProject()).getContentRoots()));
  manager.triggerPresentationUpdate();
 };
}
origin: Camelcade/Perl5-IDEA

@Override
public ProjectData loadCoverageData(@NotNull File sessionDataFile, @Nullable CoverageSuite baseCoverageSuite) {
 if (!(baseCoverageSuite instanceof PerlCoverageSuite)) {
  return null;
 }
 if (ApplicationManager.getApplication().isDispatchThread()) {
  final Ref<ProjectData> projectDataRef = new Ref<>();
  ProgressManager.getInstance().runProcessWithProgressSynchronously(
   () -> projectDataRef.set(doLoadCoverageData(sessionDataFile, (PerlCoverageSuite)baseCoverageSuite)),
   "Loading Coverage Data...", true, baseCoverageSuite.getProject());
  return projectDataRef.get();
 }
 else {
  return doLoadCoverageData(sessionDataFile, (PerlCoverageSuite)baseCoverageSuite);
 }
}
com.intellij.coverageCoverageSuite

Most used methods

  • getProject
  • getCoverageData

Popular in Java

  • Start an intent from android
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getResourceAsStream (ClassLoader)
  • getContentResolver (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • BoxLayout (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now