(t *testing.T)
| 190 | } |
| 191 | |
| 192 | func TestEnvPartialVarsError(t *testing.T) { |
| 193 | env := testEnv(t) |
| 194 | _, err := env.PartialVars(10) |
| 195 | if err == nil { |
| 196 | t.Error("env.PartialVars(10) succeeded, wanted error") |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | func TestTypeProviderInterop(t *testing.T) { |
| 201 | reg, err := types.NewProtoRegistry(types.ProtoTypeDefs(&proto3pb.TestAllTypes{})) |
nothing calls this directly
no test coverage detected