(t *testing.T, in any)
| 175 | } |
| 176 | |
| 177 | func constructActivation(t *testing.T, in any) Activation { |
| 178 | t.Helper() |
| 179 | if in == nil { |
| 180 | return EmptyActivation() |
| 181 | } |
| 182 | a, err := NewActivation(in) |
| 183 | if err != nil { |
| 184 | t.Fatalf("NewActivation(%v) failed: %v", in, err) |
| 185 | } |
| 186 | return a |
| 187 | } |
| 188 | |
| 189 | const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 190 |
no test coverage detected