Add cover_bool_test.go

This commit is contained in:
Masaaki Goshima 2021-02-15 11:48:09 +09:00
parent 72765ed523
commit 565f1e866e
2 changed files with 1787 additions and 0 deletions

1786
cover_bool_test.go Normal file

File diff suppressed because it is too large Load Diff

View File

@ -18,6 +18,7 @@ func uint64ptr(v uint64) *uint64 { return &v }
func float32ptr(v float32) *float32 { return &v }
func float64ptr(v float64) *float64 { return &v }
func stringptr(v string) *string { return &v }
func boolptr(v bool) *bool { return &v }
func encodeByEncodingJSON(data interface{}, indent, escape bool) string {
var buf bytes.Buffer