You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests for "non-compliant" doxygen strings, e.g. use of
- "getter for..." instead of "returns the..."
- "setter for..." instead of "sets the..."
Will be expanded in future to also test for:
- "return ..." instead of "returns ..."
- "set ..." instead of "sets ..."
# self.assertEquals(len(parser.undocumented_string), 0, 'FAIL: new undocumented members have been introduced, please add documentation for these members')
64
71
65
72
ifparser.classes_missing_group:
@@ -88,6 +95,7 @@ def testCoverage(self):
88
95
self.assertTrue(notparser.classes_missing_group, 'Classes without \\group tag found')
89
96
self.assertTrue(notparser.classes_missing_version_added, 'Classes without \\since version tag found')
90
97
self.assertTrue(notparser.classes_missing_brief, 'Classes without \\brief description found')
98
+
self.assertTrue(notparser.noncompliant_members, 'Non compliant members found')
0 commit comments