Validating CQLinq Code Rules with VBDepend

Validating CQLinq Code Rules



One popular aspect of the tool VBDepend is the integration of the tool into the Continuous Integration build process. Every morning the team leader gets an up-to-date report telling if some coding rules written with CQLinq have been violated within the last 24h.


Checking if there are Rules Violations

The developer gets permanently informed of CQLinq rules validation status thanks to a VBDepend progress circle located in the bottom-right corner of the VisualVBDepend.

  • green, means that all CQLinq rules are validated,

  • yellow, means some activated CQLinq rules are violated,

  • red, means:

    • some critical CQLinq rules are violated or
    • some activated CQLinq rules or queries don’t compile or
    • some activated CQLinq rules or queries have an execution problem (exception thrown or time-out)

  • blue + progressing, means that the code is currently loaded by VBDepend,

  • blue + progressing + turning chevrons, means that the code is currently analyzed by VBDepend,

  • grey, means that no VBDepend project is currently loaded.

On the VBDepend Dashboard, you can see the number of rules violated and the number of rules violations.



Notice that Rules Violated, Critical Rules Violated... are links. When clicked, the related rules or queries are listed in the Queryies and Rules Explorer panel.


▲▲ Go to Top ▲▲


Rules Explorer and Rules Edition

The CQLinq Explorer lists all rules grouped by categories…



…and by clicking a rule you can jump to the CQLinq edition panel, where you can edit the rule and see culprit methods or classes that violate the rule.



Of course double clicking a culprit method or class lets jump to its source code declaration. And if the application analyzed by VBDepend spawns several VS solutions, and these solutions are currently opened in several VS instances, the code element gets edited within the adequate VS instance, the one that contains the VS solution that contains the code element. This behavior at first glance might surprise and even look like a bug. But with the habits it becomes a powerful time-saver trick.

▲▲ Go to Top ▲▲


Focusing on Recent Code Rules Violations

On a large legacy code base, VBDepend will likely report thousands of code violations. VBDepend proposes the possibility to focus only on recent code rules violations. Only violations that occur on code elements added or refactored since the baseline for comparison will be reported.

Hence this feature represents a way to prioritize the rules violations be reducing significantly the number of violations reported to focus only on recent ones. To activate this feature, both on rules violations reported in the interactive UI and in the report, just tick the box Recent Violations Only on the Dashboard. A baseline for comparison needs to be defined to get this feature working.



▲▲ Go to Top ▲▲