(t *testing.T)
| 264 | } |
| 265 | |
| 266 | func TestLabelGistList(t *testing.T) { |
| 267 | t.Parallel() |
| 268 | |
| 269 | label := LabelGistList() |
| 270 | assert.Equal(t, IntegrityUntrusted, label.Integrity) |
| 271 | assert.Equal(t, ConfidentialityPublic, label.Confidentiality) |
| 272 | } |
| 273 | |
| 274 | func TestLabelProject(t *testing.T) { |
| 275 | t.Parallel() |
nothing calls this directly
no test coverage detected