本文整理匯總了Golang中router/test.TestApp類的典型用法代碼示例。如果您正苦於以下問題:Golang TestApp類的具體用法?Golang TestApp怎麽用?Golang TestApp使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了TestApp類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: waitMsgReceived
func (s *RouterSuite) waitMsgReceived(a *test.TestApp, r bool, t time.Duration) bool {
i := time.Millisecond * 50
m := int(t / i)
for j := 0; j < m; j++ {
received := true
for _, v := range a.Urls() {
_, ok := s.router.registry.Lookup(v)
if ok != r {
received = false
break
}
}
if received {
return true
}
time.Sleep(i)
}
return false
}
示例2: waitMsgReceived
func (s *RouterSuite) waitMsgReceived(a *test.TestApp, r bool, t time.Duration) bool {
i := time.Millisecond * 50
m := int(t / i)
for j := 0; j < m; j++ {
received := true
for _, v := range a.Urls() {
ms := s.router.registry.Lookup(&http.Request{Host: string(v)})
status := (ms != nil)
if status != r {
received = false
break
}
}
if received {
return true
}
time.Sleep(i)
}
return false
}