(t *testing.T)
| 671 | } |
| 672 | |
| 673 | func TestInt64ArrayScanNil(t *testing.T) { |
| 674 | arr := Int64Array{5, 5, 5} |
| 675 | err := arr.Scan(nil) |
| 676 | |
| 677 | if err != nil { |
| 678 | t.Fatalf("Expected no error, got %v", err) |
| 679 | } |
| 680 | if arr != nil { |
| 681 | t.Errorf("Expected nil, got %+v", arr) |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | var Int64ArrayStringTests = []struct { |
| 686 | str string |
nothing calls this directly
no test coverage detected
searching dependent graphs…