(t *testing.T)
| 272 | } |
| 273 | |
| 274 | func TestXIDGeneration(t *testing.T) { |
| 275 | assert.Equal(t, "00000000000000012345-00000000000000000000", NewTimeXID(time.Unix(12345, 0)).First().String()) |
| 276 | assert.Equal(t, "00000000000000012345-99999999999999999999", NewTimeXID(time.Unix(12345, 0)).Last().String()) |
| 277 | } |
| 278 | |
| 279 | func TestRanges(t *testing.T) { |
| 280 | c := newClient(t) |
nothing calls this directly
no test coverage detected