(t *testing.T)
| 81 | } |
| 82 | |
| 83 | func TestSession_Int32(t *testing.T) { |
| 84 | s := New(nil) |
| 85 | key := "testkey" |
| 86 | value := int32(5454) |
| 87 | s.Set(key, value) |
| 88 | if value != s.Int32(key) { |
| 89 | t.Fail() |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | func TestSession_Int64(t *testing.T) { |
| 94 | s := New(nil) |