(val bool)
| 760 | } |
| 761 | |
| 762 | func NewBoolNotEqualPredicate(val bool) BoolNotEqualPredicate { |
| 763 | return BoolNotEqualPredicate{value: val} |
| 764 | } |
| 765 | |
| 766 | func (p BoolNotEqualPredicate) String() string { |
| 767 | return fmt.Sprintf("BoolNotEqualPredicate{%t}", p.value) |
no outgoing calls
no test coverage detected