()
| 456 | } |
| 457 | |
| 458 | func random() string { |
| 459 | value, err := rand.Int(rand.Reader, big.NewInt(math.MaxInt64)) |
| 460 | if err != nil { |
| 461 | panic(fmt.Errorf("Unexpected error generating new client id: %w", err)) |
| 462 | } |
| 463 | return value.String() |
| 464 | } |
| 465 | |
| 466 | type identityServerFake struct { |
| 467 | ResponseStatus int |
no test coverage detected