JetBrains / intellij-coverage
Source Code Overview

Analysis scope, overview of main, test, generated, deployment, build, and other code.

Source Code Analysis Scope
Files includes and excluded from analyses
txt
gitattributes
properties
Overview of Analyzed Files
Basic stats on analyzed files
Intro
For analysis purposes we separate files in scope into several categories: main, test, generated, deployment and build, and other.

  • The main category contains all manually created source code files that are being used in the production.
  • Files in the main category are used as input for other analyses: logical decomposition, concerns, duplication, file size, unit size, and conditional complexity.
  • Test source code files are used only for testing of the product. These files are normally not deployed to production.
  • Build and deployment source code files are used to configure or support build and deployment process.
  • Generated source code files are automatically generated files that have not been manually changed after generation.
  • While a source code folder may contain a number of files, we are primarily interested in the source code files that are being written and maintained by developers.
  • Files containing binaries, documentation, or third-party libraries, for instance, are excluded from analysis. The exception are third-party libraries that have been changed by developers.

main15932 LOC (61%) 259 files
test7435 LOC (28%) 211 files
generated0 LOC (0%) 0 files
build and deployment363 LOC (1%) 19 files
other2092 LOC (8%) 24 files
Main Code
All manually created or maintained source code that defines logic of the product that is run in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*".
  • 259 files match defined criteria (15,932 LOC, 100.0% vs. main code):
    • 221 *.java files (13,990 LOC)
    • 15 *.xml files (901 LOC)
    • 12 *.kt files (633 LOC)
    • 3 *.groovy files (243 LOC)
    • 8 *.kts files (165 LOC)
  • " *.java" is biggest, containing 87.81% of LOC.
  • " *.kts" is smallest, containing 1.04% of LOC.


*.java13990 LOC (87%) 221 files
*.xml901 LOC (5%) 15 files
*.kt633 LOC (3%) 12 files
*.groovy243 LOC (1%) 3 files
*.kts165 LOC (1%) 8 files
Test Code
Used only for testing of the product. Normally not deployed in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*/[Tt]est/.*".
    • files with paths like ".*[-]test[-].*".
    • files with paths like ".*/[Tt]ests/.*".
    • files with paths like ".*/test[.].*".
  • 211 files match defined criteria (7,435 LOC, 46.7% vs. main code):
    • 145 *.kt files (4,779 LOC)
    • 63 *.java files (2,585 LOC)
    • 3 *.gradle files (71 LOC)
  • " *.kt" is biggest, containing 64.28% of LOC.
  • " *.gradle" is smallest, containing 0.95% of LOC.


*.kt4779 LOC (64%) 145 files
*.java2585 LOC (34%) 63 files
*.gradle71 LOC (<1%) 3 files
Build and Deployment Code
Source code used to configure or support build and deployment process.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]gradle".
    • files with paths like ".*[.]bat".
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*/[.]gitattributes".
    • files with paths like ".*[.]sh".
  • 19 files match defined criteria (363 LOC, 2.3% vs. main code):
    • 17 *.gradle files (275 LOC)
    • 1 *.bat files (68 LOC)
    • 1 *.sh files (20 LOC)
  • " *.gradle" is biggest, containing 75.76% of LOC.
  • " *.sh" is smallest, containing 5.51% of LOC.


*.gradle275 LOC (75%) 17 files
*.bat68 LOC (18%) 1 file
*.sh20 LOC (5%) 1 file
Other Code
txt
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]md".
    • files with paths like ".*/README[.][a-z0-9]+".
    • files with paths like ".*[.]properties".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*[.]txt".
  • 24 files match defined criteria (2,092 LOC, 13.1% vs. main code):
    • 19 *.txt files (1,899 LOC)
    • 5 *.md files (193 LOC)
  • " *.txt" is biggest, containing 90.77% of LOC.
  • " *.md" is smallest, containing 9.23% of LOC.


*.txt1899 LOC (90%) 19 files
*.md193 LOC (9%) 5 files
Analyzers
Info about analyzers used for source code examinations.


2026-01-18 16:41