(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func TestSession_Int64(t *testing.T) { |
| 94 | s := New(nil) |
| 95 | key := "testkey" |
| 96 | value := int64(444454) |
| 97 | s.Set(key, value) |
| 98 | if value != s.Int64(key) { |
| 99 | t.Fail() |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func TestSession_Uint(t *testing.T) { |
| 104 | s := New(nil) |