stretchr/testify
Auf GitHub ansehenrequire: invalid examples from doc comments as functions don't return bool
Open
#1.776 geöffnet am 4. Aug. 2025
bugdocumentationgood first issue
Repository-Metriken
- Stars
- (25.958 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 15h) (2 gemergte PRs in 30 T)
Beschreibung
Description
The doc comments for multiple functions in the require package have code examples that are invalid. Example:
The example reads:
if require.NoError(t, err) {
require.Equal(t, expectedObj, actualObj)
}
but the NoError() function does not return any value, so this is invalid.
There are similar invalid examples in the doc comments for NoErrorf, NotEmpty and NotEmptyf.