1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

improve UT cases for package gtime

This commit is contained in:
John Guo 2022-01-19 18:23:04 +08:00
parent 9efc2894d4
commit e90f72b538

View File

@ -27,6 +27,13 @@ func Test_Json_Pointer(t *testing.T) {
t.AssertNil(err)
t.Assert(b, `{"MyTime":"2006-01-02 15:04:05"}`)
})
gtest.C(t, func(t *gtest.T) {
b, err := json.Marshal(g.Map{
"MyTime": gtime.NewFromStr("2006-01-02 15:04:05"),
})
t.AssertNil(err)
t.Assert(b, `{"MyTime":"2006-01-02 15:04:05"}`)
})
gtest.C(t, func(t *gtest.T) {
b, err := json.Marshal(g.Map{
"MyTime": *gtime.NewFromStr("2006-01-02 15:04:05"),
@ -64,7 +71,7 @@ func Test_Json_Pointer(t *testing.T) {
}
func Test_Json_Struct(t *testing.T) {
// Marshal
// Marshal struct.
gtest.C(t, func(t *gtest.T) {
type MyTime struct {
MyTime gtime.Time
@ -75,7 +82,7 @@ func Test_Json_Struct(t *testing.T) {
t.AssertNil(err)
t.Assert(b, `{"MyTime":"2006-01-02 15:04:05"}`)
})
// Marshal
// Marshal pointer.
gtest.C(t, func(t *gtest.T) {
type MyTime struct {
MyTime gtime.Time