(t *testing.T)
| 1565 | } |
| 1566 | |
| 1567 | func TestGetSessionRequiresID(t *testing.T) { |
| 1568 | client := &CAPIClient{} |
| 1569 | |
| 1570 | _, err := client.GetSession(context.Background(), "") |
| 1571 | assert.EqualError(t, err, "missing session ID") |
| 1572 | } |
| 1573 | |
| 1574 | func TestGetSession(t *testing.T) { |
| 1575 | sampleDateString := "2025-08-29T00:00:00Z" |
nothing calls this directly
no test coverage detected