1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 10:53:33 +00:00
Beego/safemap_test.go
2013-03-28 15:25:49 +08:00

25 lines
343 B
Go

package beego
import (
"testing"
)
func Test_beemap(t *testing.T) {
bm := NewBeeMap()
if !bm.Set("astaxie", 1) {
t.Error("set Error")
}
if !bm.Check("astaxie") {
t.Error("check err")
}
if v := bm.Get("astaxie"); v.(int) != 1 {
t.Error("get err")
}
bm.Delete("astaxie")
if bm.Check("astaxie") {
t.Error("delete err")
}
}