13 lines
212 B
Go
13 lines
212 B
Go
package cache
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFriendGetTotal(t *testing.T) {
|
|
total := cache.FriendGetTotal("629f159310d6970846f7ef26")
|
|
assert.Equal(t, total, int32(1))
|
|
}
|