mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
change gqueue unit tests
This commit is contained in:
parent
ab38b709b2
commit
a7f15a4e00
@ -7,27 +7,17 @@ import (
|
||||
)
|
||||
|
||||
func TestQueue_Len(t *testing.T) {
|
||||
q1 := gqueue.New(2)
|
||||
q1 := gqueue.New()
|
||||
q1.Push(1)
|
||||
q1.Push(2)
|
||||
q1.Push(5)
|
||||
gtest.Assert(q1.Len(), 2)
|
||||
gtest.Assert(q1.Size(), 2)
|
||||
}
|
||||
|
||||
func TestQueue_Pop(t *testing.T) {
|
||||
q1 := gqueue.New()
|
||||
q1.Push(1)
|
||||
q1.Push(2)
|
||||
q1.Push(3)
|
||||
i1 := q1.Pop()
|
||||
i1:=q1.Pop()
|
||||
gtest.Assert(i1, 1)
|
||||
}
|
||||
|
||||
func TestQueue_Close(t *testing.T) {
|
||||
q1 := gqueue.New()
|
||||
q1.Push(1)
|
||||
q1.Push(2)
|
||||
gtest.Assert(q1.Len(), 2)
|
||||
q1.Close()
|
||||
gtest.Assert(q1.Len(), 2)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user