(t *testing.T, n string)
| 718 | } |
| 719 | |
| 720 | func timeFrom(t *testing.T, n string) time.Time { |
| 721 | i, err := strconv.ParseInt(n, 10, 32) |
| 722 | require.NoError(t, err) |
| 723 | return time.Unix(i, 0) |
| 724 | } |
| 725 | |
| 726 | func TestBackendRange(t *testing.T) { |
| 727 | now := int(time.Now().Unix()) |
no outgoing calls
no test coverage detected