本文整理匯總了Golang中github.com/google/git-appraise/review/comment.Comment.Timestamp方法的典型用法代碼示例。如果您正苦於以下問題:Golang Comment.Timestamp方法的具體用法?Golang Comment.Timestamp怎麽用?Golang Comment.Timestamp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/google/git-appraise/review/comment.Comment
的用法示例。
在下文中一共展示了Comment.Timestamp方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestResolvedOverlaps
func TestResolvedOverlaps(t *testing.T) {
reject := false
accept := true
blankComment := comment.Comment{
Timestamp: "012345",
Author: "[email protected]",
Resolved: &reject,
}
blankComment2 := comment.Comment{
Timestamp: "012345",
Author: "[email protected]",
Resolved: &accept,
}
// should not overlap because resolved bits are set for both
// and different even though with same timestamp
if Overlaps(blankComment, blankComment2) {
t.Errorf("%v and %v overlap", blankComment, blankComment2)
}
blankComment2.Resolved = &reject
// should overlap because resolved bits are set for both and the same with the same timestamp
if !Overlaps(blankComment, blankComment2) {
t.Errorf("%v and %v do not overlap", blankComment, blankComment2)
}
blankComment2.Resolved = &accept
// should not overlap because resolved bits are set for both and the timestamps are different
if Overlaps(blankComment, blankComment2) {
t.Errorf("%v and %v overlap", blankComment, blankComment2)
}
blankComment2.Timestamp = "012345"
blankComment2.Resolved = nil
// should not overlap because resolved bit is nil for one
if Overlaps(blankComment, blankComment2) {
t.Errorf("%v and %v overlap", blankComment, blankComment2)
}
blankComment.Resolved = nil
// should overlap because resolved bit is nil for both and there is no other descriptor
// seperating them apart
if !Overlaps(blankComment, blankComment2) {
t.Errorf("%v and %v do not overlap", blankComment, blankComment2)
}
}