(t *testing.T)
| 205 | } |
| 206 | |
| 207 | func TestLabelGlobalSecurityAdvisory(t *testing.T) { |
| 208 | t.Parallel() |
| 209 | label := LabelGlobalSecurityAdvisory() |
| 210 | assert.Equal(t, IntegrityUntrusted, label.Integrity) |
| 211 | assert.Equal(t, ConfidentialityPublic, label.Confidentiality) |
| 212 | } |
| 213 | |
| 214 | func TestLabelRepositorySecurityAdvisory(t *testing.T) { |
| 215 | t.Parallel() |
nothing calls this directly
no test coverage detected