mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-24 02:59:13 +08:00
23 lines
277 B
Go
23 lines
277 B
Go
package util
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewQueue(t *testing.T) {
|
|
|
|
q := NewQueue[int]()
|
|
|
|
for i := 0; i < 10; i++ {
|
|
q.Enqueue(i)
|
|
}
|
|
|
|
assert.Equal(t, q.Len(), 10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
assert.Equal(t, q.Dequeue(), i)
|
|
}
|
|
|
|
}
|