Comparison results for https://github.com/SalesforceLabs/Easy-PDF.git

pmd7_2 took 11 seconds to run and found 11 violations

pmd7_3 took 14 seconds to run and found 11 violations

Among the 11 total comparisons:

Violation counts:

# fileName line column endLine endColumn engine ruleName severity category url message
1 /classes/QuoteLineItemsExtension.cls 1 21 28 2 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
1 /classes/QuoteLineItemsExtension.cls 1 21 28 2 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
2 /classes/QuoteLineItemsExtension.cls 3 12 6 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
2 /classes/QuoteLineItemsExtension.cls 3 12 6 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
3 /classes/QuoteLineItemsExtension.cls 3 18 3 30 pmd PropertyNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_codestyle.html#propertynamingconventions The instance property name 'CurrentQuote' doesn't match '[a-z][a-zA-Z0-9]*'
3 /classes/QuoteLineItemsExtension.cls 3 18 3 30 pmd PropertyNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_codestyle.html#propertynamingconventions The instance property name 'CurrentQuote' doesn't match '[a-z][a-zA-Z0-9]*'
4 /classes/QuoteLineItemsExtension.cls 8 12 11 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
4 /classes/QuoteLineItemsExtension.cls 8 12 11 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
5 /classes/QuoteLineItemsExtension.cls 8 32 8 46 pmd PropertyNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_codestyle.html#propertynamingconventions The instance property name 'QuoteLineItems' doesn't match '[a-z][a-zA-Z0-9]*'
5 /classes/QuoteLineItemsExtension.cls 8 32 8 46 pmd PropertyNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_codestyle.html#propertynamingconventions The instance property name 'QuoteLineItems' doesn't match '[a-z][a-zA-Z0-9]*'
6 /classes/QuoteLineItemsExtension.cls 13 12 27 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
6 /classes/QuoteLineItemsExtension.cls 13 12 27 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
7 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
7 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexDoc 3 Documentation https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_documentation.html#apexdoc Missing ApexDoc comment
8 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexUnitTestClassShouldHaveAsserts 3 Best Practices https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_bestpractices.html#apexunittestclassshouldhaveasserts Apex unit tests should System.assert() or assertEquals() or assertNotEquals()
8 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexUnitTestClassShouldHaveAsserts 3 Best Practices https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_bestpractices.html#apexunittestclassshouldhaveasserts Apex unit tests should System.assert() or assertEquals() or assertNotEquals()
9 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexUnitTestMethodShouldHaveIsTestAnnotation 3 Best Practices https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_bestpractices.html#apexunittestmethodshouldhaveistestannotation Apex test methods should have @isTest annotation.
9 /classes/QuoteLineItemsExtensionTest.cls 3 27 26 6 pmd ApexUnitTestMethodShouldHaveIsTestAnnotation 3 Best Practices https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_bestpractices.html#apexunittestmethodshouldhaveistestannotation Apex test methods should have @isTest annotation.
10 /classes/QuoteLineItemsExtensionTest.cls 19 23 19 184 pmd LocalVariableNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_codestyle.html#localvariablenamingconventions The local variable name 'QuoteLineItems' doesn't match '[a-z][a-zA-Z0-9]*'
10 /classes/QuoteLineItemsExtensionTest.cls 19 23 19 184 pmd LocalVariableNamingConventions 1 Code Style https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_codestyle.html#localvariablenamingconventions The local variable name 'QuoteLineItems' doesn't match '[a-z][a-zA-Z0-9]*'
11 /classes/QuoteLineItemsExtensionTest.cls 23 33 23 70 pmd UnusedLocalVariable 5 Best Practices https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_apex_bestpractices.html#unusedlocalvariable Variable 'ext' defined but not used
11 /classes/QuoteLineItemsExtensionTest.cls 23 33 23 70 pmd UnusedLocalVariable 5 Best Practices https://docs.pmd-code.org/pmd-doc-7.3.0/pmd_rules_apex_bestpractices.html#unusedlocalvariable Variable 'ext' defined but not used