(t *testing.T)
| 2198 | } |
| 2199 | |
| 2200 | func TestSecretScanningPushProtection_String(t *testing.T) { |
| 2201 | t.Parallel() |
| 2202 | v := SecretScanningPushProtection{ |
| 2203 | Status: Ptr(""), |
| 2204 | } |
| 2205 | want := `github.SecretScanningPushProtection{Status:""}` |
| 2206 | if got := v.String(); got != want { |
| 2207 | t.Errorf("SecretScanningPushProtection.String = %v, want %v", got, want) |
| 2208 | } |
| 2209 | } |
| 2210 | |
| 2211 | func TestSecurityAndAnalysis_String(t *testing.T) { |
| 2212 | t.Parallel() |