本文整理匯總了Golang中github.com/guregu/toki.NullTime.Scan方法的典型用法代碼示例。如果您正苦於以下問題:Golang NullTime.Scan方法的具體用法?Golang NullTime.Scan怎麽用?Golang NullTime.Scan使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/guregu/toki.NullTime
的用法示例。
在下文中一共展示了NullTime.Scan方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestNullScan
func TestNullScan(t *testing.T) {
expected := toki.MustParseNullTime("12:34")
byteTime := toki.NullTime{}
err := byteTime.Scan([]byte("12:34:00"))
if err != nil {
t.Errorf("Scan: error: %v", err)
}
if byteTime != expected {
t.Errorf("Scan: %#v ≠ %#v", byteTime, expected)
}
nullTime := toki.NullTime{}
err = nullTime.Scan(nil)
if err != nil {
t.Errorf("Scan: error: %v", err)
}
if nullTime.Valid {
t.Errorf("Scan: not null, got %s", nullTime.String())
}
emptyTime := toki.NullTime{}
err = emptyTime.Scan("")
if err != nil {
t.Errorf("Scan: error: %v", err)
}
if emptyTime.Valid {
t.Errorf("Scan: not null, got %s", emptyTime.String())
}
emptyByteTime := toki.NullTime{}
err = emptyByteTime.Scan([]byte{})
if err != nil {
t.Errorf("Scan: error: %v", err)
}
if emptyByteTime.Valid {
t.Errorf("Scan: not null, got %s", emptyByteTime.String())
}
}