ss/jsons/timestamp_test.go

15 lines
295 B
Go
Raw Normal View History

2024-01-18 21:35:58 +03:00
package jsons
//import "time"
import "testing"
func TestTimestampJson(t *testing.T) {
//wantStr := "Thu Jan 18 2024 17:33:01 GMT+0300"
gotStr := "1705588381"
got := Timestamp(0)
err := got.UnmarshalJSON([]byte(gotStr))
if err != nil {
t.Errorf("JSON unmarshalling error: %s", err)
}
}