initial import
This commit is contained in:
17
core/syncx/limit_test.go
Normal file
17
core/syncx/limit_test.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package syncx
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestLimit(t *testing.T) {
|
||||
limit := NewLimit(2)
|
||||
limit.Borrow()
|
||||
assert.True(t, limit.TryBorrow())
|
||||
assert.False(t, limit.TryBorrow())
|
||||
assert.Nil(t, limit.Return())
|
||||
assert.Nil(t, limit.Return())
|
||||
assert.Equal(t, ErrReturn, limit.Return())
|
||||
}
|
||||
Reference in New Issue
Block a user