1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 00:24:14 +00:00

update TestParseForm

This commit is contained in:
miraclesu 2013-08-10 10:29:29 +08:00
parent 115b1d03db
commit 38f6f8eef7

View File

@ -124,18 +124,18 @@ func TestParseForm(t *testing.T) {
t.Fatal(err)
}
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 {
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" {
t.Error("should be equal")
t.Error("Name should equal `test` but got `%v`", u.Name.(string))
}
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" {
t.Error("should be equal")
t.Error("Email should equal `test@gmail.com` but got `%v`", u.Email)
}
}