(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestSession_Int16(t *testing.T) { |
| 74 | s := New(nil) |
| 75 | key := "testkey" |
| 76 | value := int16(3245) |
| 77 | s.Set(key, value) |
| 78 | if value != s.Int16(key) { |
| 79 | t.Fail() |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | func TestSession_Int32(t *testing.T) { |
| 84 | s := New(nil) |