• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

laiambryant / goTestUtils / 17065000595

19 Aug 2025 09:10AM UTC coverage: 66.823% (-1.6%) from 68.408%
17065000595

push

github

laiambryant
Refactored some stuff

426 of 488 new or added lines in 15 files covered. (87.3%)

570 of 853 relevant lines covered (66.82%)

650.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.78
/pbtesting/properties/predicates/pointer_predicates.go
1
package predicates
2

3
import "reflect"
4

5
type PointerAllowNil struct{ Allowed bool }
6

7
func (p PointerAllowNil) Verify(v any) bool {
3✔
8
        rv := reflect.ValueOf(v)
3✔
9
        if rv.Kind() != reflect.Pointer {
3✔
NEW
10
                return true
×
NEW
11
        }
×
12
        if rv.IsNil() {
5✔
13
                return p.Allowed
2✔
14
        }
2✔
15
        return true
1✔
16
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc