2

I am working on adding plug-ins to my company's SonarQube dashboard. They wanted me to put 2 labels on the dash board, The Total number of projects that have mutation testing and The projects that need Mutation testing.

I am using SonarQube Java API along which AngularJS for UI.I am looking for help on how to do this. Thank you in advance.

G. Ann - SonarSource Team
  • 22,346
  • 4
  • 40
  • 76
Dravidian
  • 339
  • 2
  • 9
  • 19

1 Answers1

3

The closest you can come with out-of-the-box features is setting a custom Metric to indicate whether mutation testing is needed, implemented, or not-needed.

Then you can do a Measures search to find the relevant projects, and use a Measure Filter Widget to display the search results on your dashboard.

G. Ann - SonarSource Team
  • 22,346
  • 4
  • 40
  • 76