(t *testing.T, dbClient *database.Client, count int)
| 114 | } |
| 115 | |
| 116 | func assertTotalAlertCount(t *testing.T, dbClient *database.Client, count int) { |
| 117 | ctx := t.Context() |
| 118 | d := dbClient.Ent.Alert.Query().AllX(ctx) |
| 119 | assert.Len(t, d, count) |
| 120 | } |
| 121 | |
| 122 | func TestAPICCAPIPullIsOld(t *testing.T) { |
| 123 | ctx := t.Context() |
no test coverage detected
searching dependent graphs…