Steffen
Results
1
comments of
Steffen
```go package foo_test import ( "fmt" "testing" "github.com/go-playground/validator/v10" "github.com/stretchr/testify/require" ) type Experience struct { Id int JobTypeId int `validate:"required_if=Type 1"` Type int } func TestJobTypeIdIsPresentIfTypeIs1(t *testing.T) { v := validator.New()...