mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:30:55 +00:00
update TestParseForm
This commit is contained in:
parent
115b1d03db
commit
38f6f8eef7
@ -124,18 +124,18 @@ func TestParseForm(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if u.Id != 0 {
|
if u.Id != 0 {
|
||||||
t.Error("Id should not be changed")
|
t.Errorf("Id should equal 0 but got %v", u.Id)
|
||||||
}
|
}
|
||||||
if len(u.tag) != 0 {
|
if len(u.tag) != 0 {
|
||||||
t.Error("tag should not be changed")
|
t.Error("tag's length should equal 0 but got %v", len(u.tag))
|
||||||
}
|
}
|
||||||
if u.Name.(string) != "test" {
|
if u.Name.(string) != "test" {
|
||||||
t.Error("should be equal")
|
t.Error("Name should equal `test` but got `%v`", u.Name.(string))
|
||||||
}
|
}
|
||||||
if u.Age != 40 {
|
if u.Age != 40 {
|
||||||
t.Error("should be equal")
|
t.Error("Age should equal 40 but got %v", u.Age)
|
||||||
}
|
}
|
||||||
if u.Email != "test@gmail.com" {
|
if u.Email != "test@gmail.com" {
|
||||||
t.Error("should be equal")
|
t.Error("Email should equal `test@gmail.com` but got `%v`", u.Email)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user