(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestConvertPointer(t *testing.T) { |
| 67 | str := "value" |
| 68 | |
| 69 | output, err := converter{}.ConvertValue(&str) |
| 70 | if err != nil { |
| 71 | t.Fatal("Pointer type not convertible", err) |
| 72 | } |
| 73 | |
| 74 | if output != "value" { |
| 75 | t.Fatalf("Pointer type not converted, got %#v %T", output, output) |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func TestConvertSignedIntegers(t *testing.T) { |
| 80 | values := []any{ |
nothing calls this directly
no test coverage detected