You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
451 B
32 lines
451 B
10 years ago
|
package validator_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/joeybloggs/go-validate-yourself"
|
||
|
)
|
||
|
|
||
|
type UserDetails struct {
|
||
|
Address string `validate:"required"`
|
||
|
}
|
||
|
|
||
|
type User struct {
|
||
|
FirstName string `validate:"required"`
|
||
|
Details *UserDetails
|
||
|
}
|
||
|
|
||
|
func TestValidateStruct(t *testing.T) {
|
||
|
|
||
|
u := &User{
|
||
|
FirstName: "Dean Karn",
|
||
|
Details: &UserDetails{
|
||
|
"26 Here Blvd.",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
errors := validator.ValidateStruct(u)
|
||
|
|
||
|
fmt.Println(errors)
|
||
|
}
|